Tenable.OT (Indegy)
Tenable.OT (Indegy) (previously Indegy Industrial Cybersecurity Suite) protects industrial networks from cyber threats, malicious insiders, and human error.
Initial Setup
To authenticate requests to the Indegy API, you must first create the following:
- A Private Key
- A public certification file
- A "robot" user: The Indegy API Robots endpoint facilitates the authentication and authorization process by using TLC Client Certificate. Instead of managing complicated tokens and sessions, Indegy enables the creation of a "Robot" user that serves as an intermediary, while supporting the use of TLC certificates as the authentication method for API calls.
To configure these parameters:
-
Obtain a token from Tenable Support.
-
Connect to your Indegy domain and run the following command to create a cert and private key. For example:
openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365 -nodes -
Save the generates files: the private key (key.pem) and the public key (cert.pem).
-
Issue a Robots (POST) API call with the body and token as specified below. This API call will associate the token with key.pem, so Axonius will not need to use the token for future API calls.
In the request, specify the following mandatory parameters:
-
IP - The IP of your Indegy domain. Replace <IP> in the script below.
-
Token - The token you have obtained from Indegy support. Replace <TOKEN> in the script below.
-
Name (string) - A logical name for the robot ("robot1" in the example script below).
-
Role (string) - The type of user role that is being created: "AdminRole" or "ReaderRole" ("AdminRole" in the example script below).
-
Cert - The content of your cert.pem file. Use "\n" to reflect new rows. Replace <CERT> in the script below.
For example:
curl -k -H 'Authorization: Bearer <TOKEN>' -XPOST https://<IP>/v1/robots --data '{"name": "robot1", "role": "AdminRole","cert": "<CERT>"}' -
Note
For more details, see the Indegy Security Platform API Guide, provided by Tenable support.
Connecting the Adapter in Axonius
Required Parameters
- Indegy Domain - Use your Indegy domain.
- Robot Name - Specify the logical name for the robot you have created by using the robot name.
- Certificate file - Upload the public key (cert) you have generated, which is a cert.pem file.
- Private key file - Upload the private key you have generated, which is a key.pem file.
Optional Parameters
- Verify SSL - Select whether to verify the SSL certificate of the server.
- HTTPS Proxy - Enter details if the connection to the API requires a proxy.
