Okta
Okta Inc. is an identity and access management company that provides technologies that enable secure user authentication into applications. In this guide, we integrate the Okta IdP to authenticate users into the Wazuh platform.
Learn how to create administrator and read-only roles on Okta and map them with Wazuh in the sections below.
Setup Okta single sign-on with administrator role
Follow these steps to integrate Okta IdP with Wazuh for single sign-on and grant administrator role to the authenticated Okta users on the Wazuh platform:
Okta Configuration
Create an account on Okta. Request a free trial if you don't have a paid license.
Create a new user.
From your okta admin console page, navigate to Directory > People.
From the People section, select Add Person, fill in the details of the new user, and click Save as seen in the following screenshots.
Create a new group. Navigate to Directory > Groups and add a group.
Create a new group using any name. In our case, we name it
wazuh-admins. This name will be used as ourbackend_rolesfor Wazuh role mapping.Add the new user to the new group. Navigate to Directory > Groups and select your group. Click on Assign People and add the user to the group created.
Create a new app. Configure the SAML settings while you create the app.
Navigate to the Applications section in Okta. Select Create App Integration.
In the Create a new application integration window, select SAML 2.0 and click Next.
Assign a name to the application and click on Next. In our case, we assign the name
wazuh-sso-app.
In the Configure SAML menu, you’ll find the SAML Settings section, modify the following parameters:
Single sign on URL: input
https://<WAZUH_DASHBOARD_URL>/_opendistro/_security/saml/acsand replace the<WAZUH_DASHBOARD_URL>field with the corresponding URL.Audience URI (SP Entity ID): input
wazuh-saml. This is theSP Entity IDvalue which will be used later in theconfig.ymlon the Wazuh indexer instance.Other Requestable SSO URLs: click on Show Advanced Settings to access this option. Input
https://<WAZUH_DASHBOARD_URL>/_opendistro/_security/saml/acs/idpinitiatedand replace the<WAZUH_DASHBOARD_URL>field with the corresponding URL.
You can leave the rest of the values as default.
In the Group Attribute Statements section put
Rolesas the name. The value forRoleswill be used as theroles_keyparameter in the Wazuh indexer configuration. For the filter field, select Matches regex and type.*.
Proceed by clicking next and on the feedback page, select the options seen in the screenshot below. Click on Finish and proceed to the next step.
Add the new app to the new group. Navigate to Directory > Groups and select your group. Click on Applications and select Assign Applications. From here, assign the app created in step 5 and click on Done to save the changes.
Note the necessary parameters from the SAML settings of the new app. The parameters already obtained during the integration are:
sp.entity_id:wazuh-samlroles_key:Roleskibana_url:https://<WAZUH_DASHBOARD_URL>backend_roles:wazuh-admins
To obtain the remaining parameters, navigate to Applications > Applications, select your app and click Sign On.
Under SAML Signing Certificates, select View IdP metadata of the active certificate. This will open in a new tab. Copy the URL as this will be the
idp.metadata_url.Now, on the same page, click on View SAML setup instructions. Copy the Identity Provider Issuer URL, it will be the
idp.entity_id.
Wazuh indexer configuration
Edit the Wazuh indexer security configuration files. We recommend that you back up these files before you carry out the configuration.
Generate a 64-character long random key using the following command.
openssl rand -hex 32The output will be used as the
exchange_keyin the/etc/wazuh-indexer/opensearch-security/config.ymlfile.Edit the
/etc/wazuh-indexer/opensearch-security/config.ymlfile and change the following values:Set the
orderinbasic_internal_auth_domainto0and thechallengeflag tofalse.Include a
saml_auth_domainconfiguration under theauthcsection similar to the following:
authc: ... basic_internal_auth_domain: description: "Authenticate via HTTP Basic against internal users database" http_enabled: true transport_enabled: true order: 0 http_authenticator: type: "basic" challenge: false authentication_backend: type: "intern" saml_auth_domain: http_enabled: true transport_enabled: false order: 1 http_authenticator: type: saml challenge: true config: idp: metadata_url: 'https://....okta.com/app/..../sso/saml/metadata' entity_id: 'http://www.okta.com/....' sp: entity_id: wazuh-saml kibana_url: https://<WAZUH_DASHBOARD_URL> roles_key: Roles exchange_key: 'b1d6dd32753374557dcf92e241.........' authentication_backend: type: noop
Ensure to change the following parameters to their corresponding value:
idp.metadata_urlidp.entity_idsp.entity_idkibana_urlroles_keyexchange_key
Run the
securityadminscript to load the configuration changes made in theconfig.ymlfile.# export JAVA_HOME=/usr/share/wazuh-indexer/jdk/ && bash /usr/share/wazuh-indexer/plugins/opensearch-security/tools/securityadmin.sh -f /etc/wazuh-indexer/opensearch-security/config.yml -icl -key /etc/wazuh-indexer/certs/admin-key.pem -cert /etc/wazuh-indexer/certs/admin.pem -cacert /etc/wazuh-indexer/certs/root-ca.pem -h localhost -nhnv
The
-hflag specifies the hostname or the IP address of the Wazuh indexer node. Note that this command uses localhost, set your Wazuh indexer address if necessary.The command output must be similar to the following:
Security Admin v7 Will connect to localhost:9200 ... done Connected as "CN=admin,OU=Wazuh,O=Wazuh,L=California,C=US" OpenSearch Version: 2.19.4 Contacting opensearch cluster 'opensearch' and wait for YELLOW clusterstate ... Clustername: wazuh-cluster Clusterstate: GREEN Number of nodes: 1 Number of data nodes: 1 .opendistro_security index already exists, so we do not need to create one. Populate config from /home/wazuh-user Will update '/config' with /etc/wazuh-indexer/opensearch-security/config.yml SUCC: Configuration for 'config' created or updated SUCC: Expected 1 config types for node {"updated_config_types":["config"],"updated_config_size":1,"message":null} is 1 (["config"]) due to: null Done with success
Edit the
/etc/wazuh-indexer/opensearch-security/roles_mapping.ymlfile and change the following values:Configure the
roles_mapping.ymlfile to map the Okta group to the appropriate Wazuh indexer role. In our case, we map it to theall_accessrole:all_access: reserved: false hidden: false backend_roles: - "admin" - "<GROUP_NAME>"
Replace
<GROUP_NAME>with the name you gave to your group in Step 3. In our case, this iswazuh-admins.Run the
securityadminscript to load the configuration changes made in theroles_mapping.ymlfile.# export JAVA_HOME=/usr/share/wazuh-indexer/jdk/ && bash /usr/share/wazuh-indexer/plugins/opensearch-security/tools/securityadmin.sh -f /etc/wazuh-indexer/opensearch-security/roles_mapping.yml -icl -key /etc/wazuh-indexer/certs/admin-key.pem -cert /etc/wazuh-indexer/certs/admin.pem -cacert /etc/wazuh-indexer/certs/root-ca.pem -h localhost -nhnv
The
-hflag specifies the hostname or the IP address of the Wazuh indexer node. Note that this command uses localhost, set your Wazuh indexer address if necessary.The command output must be similar to the following:
Security Admin v7 Will connect to localhost:9200 ... done Connected as "CN=admin,OU=Wazuh,O=Wazuh,L=California,C=US" OpenSearch Version: 2.19.4 Contacting opensearch cluster 'opensearch' and wait for YELLOW clusterstate ... Clustername: wazuh-cluster Clusterstate: GREEN Number of nodes: 1 Number of data nodes: 1 .opendistro_security index already exists, so we do not need to create one. Populate config from /home/wazuh-user Will update '/rolesmapping' with /etc/wazuh-indexer/opensearch-security/roles_mapping.yml SUCC: Configuration for 'rolesmapping' created or updated SUCC: Expected 1 config types for node {"updated_config_types":["rolesmapping"],"updated_config_size":1,"message":null} is 1 (["rolesmapping"]) due to: null Done with success
Wazuh dashboard configuration
Verify that
run_asis set totruein the/usr/share/wazuh-dashboard/data/wazuh/config/wazuh.ymlconfiguration file. This is required to create a role mapping in the Wazuh dashboard, ensuring the backend role provided by the IdP is correctly mapped to the corresponding Wazuh role.hosts: - default: url: https://localhost port: 55000 username: wazuh-wui password: "<WAZUH_WUI_PASSWORD>" run_as: true
Click ☰ to open the menu on the Wazuh dashboard, go to Server management > Security, and then Roles mapping to open the page.
Click Create Role mapping and complete the empty fields with the following parameters:
Role mapping name: Assign a name to the role mapping.
Roles: Select
administrator.Custom rules: Click Add new rule to expand this field.
User field:
backend_rolesSearch operation:
FINDValue: Assign the name you gave to your group in Step 3 of Okta configuration, in our case, this is
wazuh-admins.Click Save role mapping to save and map the backend role with Wazuh as administrator.
Edit the Wazuh dashboard configuration file. Add these configurations to
/etc/wazuh-dashboard/opensearch_dashboards.yml. We recommend that you back up these files before you carry out the configuration.opensearch_security.auth.multiple_auth_enabled: true opensearch_security.auth.type: ["basicauth","saml"] server.xsrf.allowlist: ["/_opendistro/_security/saml/acs", "/_opendistro/_security/saml/logout", "/_opendistro/_security/saml/acs/idpinitiated"]
Restart the Wazuh dashboard service using this command:
# systemctl restart wazuh-dashboard
Test the configuration, go to your Wazuh dashboard URL and log in with your Okta account.
Setup Okta single sign-on with read-only role
Follow these steps to integrate Okta IdP with Wazuh for single sign-on and grant read-only role to the authenticated Okta users on the Wazuh platform:
Okta configuration
Create an account on Okta. Request a free trial if you don't have a paid license.
Create a new user.
From your okta admin console page, navigate to Directory > People.
From the People section, select Add Person, fill in the details of the new user, and click Save as seen in the following screenshots.
Create a new group. Navigate to Directory > Groups and add a group.
Create a new group using any name. In our case, we name it
wazuh-readonly. This name will be used as ourbackend_rolesfor Wazuh role mapping.Add the new user to the new group. Navigate to Directory > Groups and select your group. Click on Assign People and add the user to the group created.
Create a new app. Configure the SAML settings while you create the app.
Navigate to the Applications section in Okta. Select Create App Integration.
In the Create a new application integration window, select SAML 2.0 and click Next.
Assign a name to the application, in our case, we assign the name
wazuh-sso-app.
In the Configure SAML menu, you’ll find the SAML Settings section, modify the following parameters:
Single sign on URL: input
https://<WAZUH_DASHBOARD_URL>/_opendistro/_security/saml/acsand replace the<WAZUH_DASHBOARD_URL>field with the corresponding URL.Audience URI (SP Entity ID): input
wazuh-saml. This is theSP Entity IDvalue which will be used later in theconfig.ymlon the Wazuh indexer instance.Other Requestable SSO URLs: click on Show Advanced Settings to access this option. Input
https://<WAZUH_DASHBOARD_URL>/_opendistro/_security/saml/acs/idpinitiatedand replace the<WAZUH_DASHBOARD_URL>field with the corresponding URL.
You can leave the rest of the values as default.
In the Group Attribute Statements section, put
Rolesas the name. The value forRoleswill be used as theroles_keyparameter in the Wazuh indexer configuration. For the filter field, select Matches regex and type.*.
Proceed by clicking next and on the feedback page, select the options seen in the screenshot below. Click on Finish and proceed to the next step.
Add the new app to the new group. Navigate to Directory > Groups and select your group. Click on Applications and select Assign Applications. From here, assign the app created in step 5 and click on Done to save the changes.
Note the necessary parameters from the SAML settings of the new app. The parameters already obtained during the integration are:
sp.entity_id:wazuh-samlroles_key:Roleskibana_url:https://<WAZUH_DASHBOARD_URL>backend_roles:wazuh-readonly
To obtain the remaining parameters, navigate to Applications > Applications, select your app and click Sign On.
Under SAML Signing Certificates, select View IdP metadata of the active certificate. This will open in a new tab. Copy the URL as this will be the
idp.metadata_url.Now, on the same page, click on View SAML setup instructions. Copy the Identity Provider Issuer URL, it will be the
idp.entity_id.
Wazuh indexer configuration
Edit the Wazuh indexer security configuration files. We recommend that you back up these files before you carry out the configuration.
Generate a 64-character long random key using the following command.
openssl rand -hex 32The output will be used as the
exchange_keyin the/etc/wazuh-indexer/opensearch-security/config.ymlfile.Edit the
/etc/wazuh-indexer/opensearch-security/config.ymlfile and change the following values:Set the
orderinbasic_internal_auth_domainto0and thechallengeflag tofalse.Include a
saml_auth_domainconfiguration under theauthcsection similar to the following:
authc: ... basic_internal_auth_domain: description: "Authenticate via HTTP Basic against internal users database" http_enabled: true transport_enabled: true order: 0 http_authenticator: type: "basic" challenge: false authentication_backend: type: "intern" saml_auth_domain: http_enabled: true transport_enabled: false order: 1 http_authenticator: type: saml challenge: true config: idp: metadata_url: 'https://....okta.com/app/..../sso/saml/metadata' entity_id: "http://www.okta.com/...." sp: entity_id: wazuh-saml kibana_url: https://<WAZUH_DASHBOARD_URL> roles_key: Roles exchange_key: 'b1d6dd32753374557dcf92e241.........' authentication_backend: type: noop
Ensure to change the following parameters to their corresponding value:
idp.metadata_urlidp.entity_idsp.entity_idkibana_urlroles_keyexchange_key
Run the
securityadminscript to load the configuration changes made in theconfig.ymlfile.# export JAVA_HOME=/usr/share/wazuh-indexer/jdk/ && bash /usr/share/wazuh-indexer/plugins/opensearch-security/tools/securityadmin.sh -f /etc/wazuh-indexer/opensearch-security/config.yml -icl -key /etc/wazuh-indexer/certs/admin-key.pem -cert /etc/wazuh-indexer/certs/admin.pem -cacert /etc/wazuh-indexer/certs/root-ca.pem -h localhost -nhnv
The
-hflag specifies the hostname or the IP address of the Wazuh indexer node. Note that this command uses localhost, set your Wazuh indexer address if necessary.The command output must be similar to the following:
Security Admin v7 Will connect to localhost:9200 ... done Connected as "CN=admin,OU=Wazuh,O=Wazuh,L=California,C=US" OpenSearch Version: 2.19.4 Contacting opensearch cluster 'opensearch' and wait for YELLOW clusterstate ... Clustername: wazuh-cluster Clusterstate: GREEN Number of nodes: 1 Number of data nodes: 1 .opendistro_security index already exists, so we do not need to create one. Populate config from /home/wazuh-user Will update '/config' with /etc/wazuh-indexer/opensearch-security/config.yml SUCC: Configuration for 'config' created or updated SUCC: Expected 1 config types for node {"updated_config_types":["config"],"updated_config_size":1,"message":null} is 1 (["config"]) due to: null Done with success
Wazuh dashboard configuration
Create a new role mapping for the backend role. Follow these steps to create a new role mapping, and grant read-only permissions to the backend role.
Log into the Wazuh dashboard as administrator.
Click the upper-left menu icon ☰ to open the options, go to Indexer management > Security, and then Roles to open the roles page.
Click Create role, complete the empty fields with the following parameters, and then click Create to complete the task.
Name: Assign a name to the role.
Cluster permissions:
cluster_composite_ops_roIndex:
*Index permissions:
readTenant permissions:
global_tenantand select theRead onlyoption.
Select the newly created role.
Select the Mapped users tab and click Manage mapping.
Under Backend roles, add the name of the read-only group you created in Okta and click Map to confirm the action. In our case, the backend role is
wazuh-readonly.
Verify that
run_asis set totruein the/usr/share/wazuh-dashboard/data/wazuh/config/wazuh.ymlconfiguration file. This is required to create a role mapping in the Wazuh dashboard, ensuring the backend role provided by the IdP is correctly mapped to the corresponding Wazuh role.hosts: - default: url: https://localhost port: 55000 username: wazuh-wui password: "<WAZUH_WUI_PASSWORD>" run_as: true
Click ☰ to open the menu on the Wazuh dashboard, go to Server management > Security, and then Roles mapping to open the page.
Click Create Role mapping and complete the empty fields with the following parameters:
Role mapping name: Assign a name to the role mapping.
Roles: Select
readonly.Custom rules: Click Add new rule to expand this field.
User field:
backend_rolesSearch operation:
FINDValue: Assign the name you gave to your group in Step 3 of Okta configuration, in our case, this is
wazuh-readonly.Click Save role mapping to save and map the backend role with Wazuh as read-only.
Edit the Wazuh dashboard configuration file. Add these configurations to
/etc/wazuh-dashboard/opensearch_dashboards.yml. We recommend that you back up these files before you carry out the configuration.opensearch_security.auth.multiple_auth_enabled: true opensearch_security.auth.type: ["basicauth","saml"] server.xsrf.allowlist: ["/_opendistro/_security/saml/acs", "/_opendistro/_security/saml/logout", "/_opendistro/_security/saml/acs/idpinitiated"]
Restart the Wazuh dashboard service.
# systemctl restart wazuh-dashboard
Test the configuration. Go to your Wazuh dashboard URL and log in with your Okta account.