Jumpcloud
Jumpcloud, is a Unified Device and Identity Access Management platform that provides services such as Multi-Factor Authentication (MFA), Single Sign-On, password management, and cloud directory. In this guide, we integrate the Jumpcloud SSO to authenticate users into the Wazuh platform.
There are three stages in the single sign-on integration.
Jumpcloud Configuration
Wazuh indexer configuration
Wazuh dashboard configuration
Jumpcloud Configuration
Create an account in Jumpcloud. Request a free trial if you don't have a paid license.
Create a new user. This step can be skipped if you are just testing, you can use your Jumpcloud
admin
user for example.Go to User Management, click on Users > (+) > Manual user entry. Fill in the user information, activate the user and click on save user.
Create a new group and assign the user.
Go to User Management > User Groups > (+) and give a name to the group. In our case, this is
Wazuh admins
.The name you give to your group will be used in the configuration. It will be our
backend_roles
inroles_mapping.yml
.In the selected User Groups, go to the Users tab, select the newly created user and Save the changes.
Create a new app. Configure the SAML settings while you create the app.
Under the User Authentication section, go to SSO, select (+), click on Custom SAML App and add a Display Label.
Complete the SSO tab with the appropriate information.
IdP Entity ID:
wazuh
(this will be theidp.entity_id
in our Wazuh indexer configuration).SP Entity ID:
wazuh-saml
(this will be thesp.entity_id
in our Wazuh indexer configuration).ACS URL:
https://<WAZUH_DASHBOARD_URL>/_opendistro/_security/saml/acs
Check Sign Assertion.
Check Declare Redirect Endpoint.
Check include group attribute and add Roles as the attribute. This will be used later in the
config.yml
configuration file.
The rest of the options can be left as their default values.
On the User Groups tab, select the Group created previously and click save.
Note the necessary parameters from the SAML settings of the new app.
Open the recently created application, go to the SSO tab and select Export Metadata. This will be our
metadata_file
. Place the metadata file in the configuration directory of the Wazuh indexer. The path to the directory is/etc/wazuh-indexer/opensearch-security/
.Extract the
exchange_key
from themetadata_file
under theds:X509Certificate
tag.
Wazuh indexer configuration
Edit the Wazuh indexer security configuration files. We recommend that you back up these files before you carry out the configuration.
Place the
metadata_jumpcloud.xml
file within the/etc/wazuh-indexer/opensearch-security/
directory. Set the file ownership towazuh-indexer
using the following command:# chown wazuh-indexer:wazuh-indexer /etc/wazuh-indexer/opensearch-security/metadata_jumpcloud.xml
Edit the
/etc/wazuh-indexer/opensearch-security/config.yml
file and change the following values:Set the
order
inbasic_internal_auth_domain
to0
and thechallenge
flag tofalse
.Include a
saml_auth_domain
configuration under theauthc
section 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: true order: 1 http_authenticator: type: saml challenge: true config: idp: metadata_file: “/etc/wazuh-indexer/opensearch-security/metadata_jumpcloud.xml” entity_id: wazuh sp: entity_id: wazuh-saml forceAuthn: true kibana_url: https://<WAZUH_DASHBOARD_URL> roles_key: Roles exchange_key: 'MIIBkTCB+wIBADBSMQs......' authentication_backend: type: noop
Ensure to change the following parameters to their corresponding value:
idp.metadata_file
idp.entity_id
sp.entity_id
kibana_url
roles_key
exchange_key
Run the
securityadmin
script to load the configuration changes made in theconfig.yml
file.# 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
-h
flag 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.4.1 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 /etc/wazuh-indexer/opensearch-security Will update '/config' with /etc/wazuh-indexer/opensearch-security/config.yml SUCC: Configuration for 'config' created or updated Done with success
Edit the
/etc/wazuh-indexer/opensearch-security/roles_mapping.yml
file and change the following values:Configure the
roles_mapping.yml
file to map the Jumpcloud user group to the appropriate Wazuh indexer role. In our case, we map theWazuh admins
group to theall_access
role:all_access: reserved: false hidden: false backend_roles: - "admin" - "Wazuh admins" description: "Maps admin to all_access"
Run the
securityadmin
script to load the configuration changes made in theroles_mapping.yml
file.# 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
-h
flag 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.4.1 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 /etc/wazuh-indexer/opensearch-security Will update '/rolesmapping' with /etc/wazuh-indexer/opensearch-security/roles_mapping.yml SUCC: Configuration for 'rolesmapping' created or updated Done with success
Wazuh dashboard configuration
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.type: "saml" server.xsrf.allowlist: ["/_opendistro/_security/saml/acs", "/_opendistro/_security/saml/logout", "/_opendistro/_security/saml/acs/idpinitiated"]
Note
For versions 4.3.9 and earlier, also replace
path: `/auth/logout`
withpath: `/logout`
in/usr/share/wazuh-dashboard/plugins/securityDashboards/server/auth/types/saml/routes.js
. We recommend that you back up these files before you carry out the configuration.... this.router.get({ path: `/logout`, validate: false ...
Restart the Wazuh dashboard service.
# systemctl restart wazuh-dashboard
# service wazuh-dashboard restart
Test the configuration. Go to your Wazuh dashboard URL and log in with your Jumpcloud account.