Install or Renew a Custom Certificate
Install or renew a custom certificate in Cortex XSOAR 6.13.
For security reasons, the default certificate for a production environment must be replaced with your private key and a certificate from a CA (Certificate Authority). For development environments, you have the option of using a self-signed certificate or a certificate from a CA (Certificate Authority).
Create a Private Key and CSR
The following example is one way to create a private key and certificate signing request (CSR) on a Linux-based system. The procedure may be slightly different between Linux releases, operating system versions, and OpenSSL versions.
In an SSH session to the Cortex XSOAR server, install OpenSSL by running the following command:
For Ubuntu:
sudo apt install opensslFor Fedora:
sudo yum install openssl
Generate the certificate signing request and the private key. The certificate signing request is for the URL that will be publicly available for everyone and also includes all public-facing aliases.
FlagDescription-newkey rsa:4096
Creates a new certificate request and a 4096 bit RSA key. The default RSA key is 2048 bits.
-sha256
Uses 265-bit SHA (Secure Hash Algorithm).
-out example.csr
Specifies the file name for the newly created certificate signing request. You can specify any file name.
-keyout example.key
Specifies the file name for the newly created private key. You can specify any file name.
-addext
Adds desired DNS aliases to the certificate.
Save the cert.key file.
Follow the on-screen instructions.
The CSR is sent to the certificate signing authority. The CA (certificate authority) sends the certificate by email in different formats. For example, example.crt.
Caution
Cortex XSOAR server does not support PKCS#8 encrypted PEM files. To validate that the file is in a format that is supported, view the encrypted .key file (you can use one of the following commands: vi / less / cat) and check that the "DEK-Info" header exists.
A certificate with the DEK-Info header begins with the following:
-----BEGIN RSA PRIVATE KEY----- Proc-Type: 4,ENCRYPTEDVcNSY7T... DEK-Info: AES-256-CBC,B94C43E0E49D267EB3AA84DC19EB41ED VcNSY7T...If the DEK-Info header is not similar to the example above, the file is likely in the wrong format (PKCS#8).
You can convert the .key file to the proper format by running the following command:
openssl rsa -in oldcert.key -out cert.key -aes256You don't have to use
aes256, you can usedes3or whichever encryption method you prefer.After you run this command, view the .key file and verify that the DEK-Info header is similar to the example above. This should allow the .key file to be read.
For the certificate PEM file, you must concatenate the certificate chain one after the other in the file.
If you are using an intermediate certificate, the order is:
SSL certificate
Intermediate certificate
CA certificate
If you are not using an intermediate certificate, the order is:
SSL Certificate
CA Certificate
Apply the Certificate to Cortex XSOAR
To replace the default internal certificate with a private key and a certificate from a CA (Certificate Authority):
Replace the existing default internal certificate in
/usr/local/demisto/cert.pemand key in/usr/local/demisto/cert.keywith the newly generated private certificate and key.For example:
Copy the certificate (example.crt) to /usr/local/demisto:
cp example.crt /usr/local/demisto/cert.pemCopy the key (example.key) to /usr/local/demisto:
cp example.key /usr/local/demisto/cert.keyIf you store the certificate and key in a folder other than
/usr/local/demisto, you must edit the/etc/demisto.conffile and add the locations below:Check both files have the correct ownership:
demisto:demisto.If your private key is encrypted, you need to add the key password to the one-time-configuration (OTC) file located in
/var/lib/demisto/otc.conf.json. After the file is saved and the Cortex XSOAR server is restarted, the OTC file is automatically deleted. Add the following content to the OTC file:{"keypass":"certpassword"}. Theotc.conf.jsonmust have permissions fordemisto:demisto.Restart the Cortex XSOAR server.
sudo service demisto start
Troubleshoot Creating a Private Key and CSR
After the newly generated certificate key pair is copied to /usr/local/demisto, if the browser does not show the new certificate, do one or more of the following:
Check whether the FQDN of the Cortex XSOAR server is the same as the CN field of the certificate, or any of the DNS fields in the
Certificate Subject Alternative NAME (SAN).Check whether there are any other certificates or keys in
/usr/local/demisto, other than the ones generated recently for the Cortex XSOAR server. If so, remove or move them to another folder on the server.On your browser on which you are trying to load Cortex XSOAR, clear cookies and other data. For example, in Chrome, go to Settings → Advanced → Clear Browsing data → Clear data.
If the Cortex XSOAR server is behind a load balancer, re-upload the certificate on the load balancer. For example, if the Cortex XSOAR server is behind the ELB (Elastic Load Balancing), re-import the certificate on ELB (Elastic Load Balancing) on the Amazon Certificate Manager AWS console.
Confirm the demisto.conf file contains the following keys:
Last updated
Was this helpful?
