OpenLDAP
Authenticate using OpenLDAP or Active Directory.
Authentication & Identity Management · LDAP Authentication
Details
| ID | OpenLDAP |
|---|---|
| Provider | Open Source |
| Category | Authentication & Identity Management |
| From Version | 5.0.0 |
| Docker Image | demisto/py3-tools:1.0.0.10895515 |
| Supported Modules | Agentix XSIAM |
README
Overview
This integration enables using your OpenLDAP or Active Directory user authentication settings in Cortex XSOAR. Users can log in to Cortex XSOAR with their OpenLDAP or Active Directory username and passwords, and their permissions in Cortex XSOAR will be set according to the groups and mapping set in AD Roles Mapping.
- For connecting to the LDAP server with TLS connection it is recommended to use this integration instead of the server integration
Active Directory Authentication.
Use Cases
Use OpenLDAP or Active Directory user authentication groups to set user roles in Cortex XSOAR.
Configure OpenLDAP on Cortex XSOAR
- Navigate to Settings > Integrations > Servers & Services.
- Search for ‘LDAP Authentication’ (‘OpenLDAP’ or ‘Active Directory Authentication’ should work as well).
- Click Add instance to create and configure a new integration instance.
- Name: a textual name for the integration instance.
- LDAP Server Vendor (OpenLDAP or Active Directory. Use ‘Auto’ option to determine the vendor automatically.)
- Server IP or Host Name (e.g., 192.168.0.1)
- Port. If not specified, default port is 389, or 636 for LDAPS.
- User DN (e.g cn=admin,ou=users,dc=domain,dc=com)
- Base DN (e.g. DC=domain,DC=com)
- Auto populate groups
- Groups Object Class
- Groups Unique Identifier Attribute
- Group Membership Identifier Attribute
- User Object Class
- User Unique Identifier Attribute
- Page size
- Connection Type (None, SSL or Start TLS)
- SSL Version (None, TLS, TLSv1, TLSv1_1, TLSv1_2, TLS_CLIENT)
(The SSL\TLS version to use in SSL or Start TLS connections types. It is recommended to select the TLS_CLIENT option, which auto-negotiate the highest protocol version that both the client and server support, and configure the context client-side connections. For more information please see: ssl.PROTOCOLS). - Trust any certificate (not secure)
- Use system proxy settings
- Click Test to validate the URLs, token, and connection.
Additional Information
Steps required for setting AD roles Mapping: (The steps refer to an OpenLDAP server)
-
Create OpenLDAP child entry of User Account template under wanted Organizational Unit and Posix Group, with uid as part of DN:

-
Create OpenLDAP child entry of Posix Group template, with created account from step 1 as memberUid:

- If using different attributes and class/group templates (different objectClass), customize the following default values in the instance configuration:
- Groups Object Class
- Groups Unique Identifier Attribute
- Group Membership Identifier Attribute
- User Object Class
- User Unique Identifier Attribute
-
Navigate to Settings > USERS AND ROLES > ROLES.
-
Choose the role.
-
Add the created group from step 2 to AD Roles Mapping.

- Login to Cortex XSOAR using uid or full DN and password of the user created in step 1.
Commands
You can execute these commands from the Cortex XSOAR CLI, as part of an automation, or in a playbook.
After you successfully execute a command, a DBot message appears in the War Room with the command details.
ad-authenticate
Performs a simple bind operation on the LDAP server.
Base Command
ad-authenticate
Input
| Argument Name | Description | Required |
|---|---|---|
| username | The username for simple authentication. | Required |
| password | The password for simple authentication. | Required |
Context Output
There is no context output for this command.
Command Example
!ad-authenticate username=user password=secret
Human Readable Output
Done
ad-groups
Fetches LDAP groups under a given base DN.
Base Command
ad-groups
Input
| Argument Name | Description | Required |
|---|---|---|
| specific-groups | A list of group object names to fetch. The list is delimited by a number sign (#). | Optional |
Context Output
There is no context output for this command.
Command Example
!ad-groups
Human Readable Output
{
"Controls": null,
"Entries": [
{
"Attributes": [
{
"Name": "primaryGroupToken",
"Values": [
"111"
]
}
],
"DN": "CN=Admin,CN=Builtin,DC=Test,DC=Test1"
},
{
"Attributes": [
{
"Name": "primaryGroupToken",
"Values": [
"222"
]
}
],
"DN": "CN=Users,CN=Builtin,DC=Test,DC=Test1"
},
],
"Referrals": [
"ldap://domainTest/CN=Test,DC=Test,DC=Test1",
"ldap://domainTest2/CN=Test,DC=Test,DC=Test2"
]
}
ad-authenticate-and-roles
Performs a simple bind operation on the LDAP server and returns the authenticated user’s groups.
Base Command
ad-authenticate-and-roles
Input
| Argument Name | Description | Required |
|---|---|---|
| username | The username for simple authentication. | Required |
| password | The password for simple authentication. | Required |
| attribute-mail-pull | Whether to return the mail attribute. Possible values are: “true”, “false”. Default is “true”. | Optional |
| attribute-mail | Mail attribute to return in the response. Default is “mail”. | Optional |
| attribute-name-pull | Whether to return the name attribute. Possible values are: “true”, “false”. Default is “true”. | Optional |
| attribute-name | Name attribute to return in the response. Default is “name”. | Optional |
| attribute-phone-pull | Whether to return the phone attribute. Possible values are: “true”, “false”. Default is “false”. | Optional |
| attribute-phone | Phone attribute to return in the response. Default is “mobile”. | Optional |
Context Output
There is no context output for this command.
Command Example
!ad-authenticate-and-roles username='username' password='password' attribute-phone-pull=true
Human Readable Output
{
"Controls": [],
"Entries": [
{
"Attributes": [
{
"Name": "memberOf",
"Values": [
"CN=Domain ,CN=Users,DC=Test,DC=Test1"
]
},
{
"Name": "name",
"Values": [
"User Name"
]
},
{
"Name": "primaryGroupID",
"Values": [
"111"
]
},
{
"Name": "mail",
"Values": [
"username@mail.com"
]
},
{
"Name": "mobile",
"Values": [
"555-5555555"
]
}
],
"DN": "CN=User Name,CN=Users,DC=Test,DC=Test1"
}
],
"Referrals": [
"ldap://domainTest/CN=Test,DC=Test,DC=Test1",
"ldap://domainTest2/CN=Test,DC=Test,DC=Test2"
]
}
ad-entries-search
A generic LDAP search command.
Base Command
ad-entries-search
Input
| Argument Name | Description | Required |
|---|---|---|
| search_base | The location in the DIT where the search will start. Default is the provided Base DN in the configuration. | Optional |
| search_filter | A string that describes what you are searching for. When provided with additional filter arguments, the OR join operator is used. If not provided, and no other filter arguments are present, all entries are returned. Search filters are based on assertions. One assertion is a bracketed expression that affirms something about an attribute and its values, as (givenName=John) or (maxRetries>=10). On the server, each assertion resolves to True, False, or Undefined (which is treated as False) for one or more entries in the DIT. Assertions can be grouped in boolean groups where all assertions (and group, specified with &) or at least one assertion (or group, specified with |) must be True. A single assertion can be negated (not group, specified with !). Each group must be bracketed, allowing for recursive filters. Operators allowed in an assertion are = (equal), <= (less than or equal), >= (greater than or equal), =(present), ~= (approximate), and := (extensible). Surprisingly the less than and the greater than operators don’t exist in the LDAP filter syntax. The aproximate and the extensible operators are obscure and seldom used. In an equality filter you can use the character as a wildcard. | Optional |
| search_scope | Specifies how broad the search context. ‘BASE’- retrieves attributes of the entry specified in the search_base. ‘LEVEL’- retrieves attributes of the entries contained in the search_base. The base must reference a container object. ‘SUBTREE’ - retrieves attributes of the entries specified in the search_base and all subordinate containers downward. Possible values are: BASE, LEVEL, SUBTREE. Default is SUBTREE. | Optional |
| attributes | A comma-separated list of attributes to return in the response. If attributes is ‘none’, no attributes will be returned except the dn. If attributes is ‘all_user_attributes’ or ‘all_operational_attributes’, all user attributes or all operational attributes are returned. If attributes is ‘all’, both user and operational attributes are returned. Possible values are: none, all_user_attributes, all_operational_attributes, all. Default is all. | Optional |
| cn | A comma-separated list of CNs to filter the search by (AND operator is used to join them). | Optional |
| uid | A comma-separated list of UIDs to filter the search by (AND operator is used to join them). | Optional |
| object_class | A comma-separated list of objectClasses to filter the search by (AND operator is used to join them). | Optional |
| description | A comma-separated list of descriptions to filter the search by (AND operator is used to join them). | Optional |
| page | Page to return. | Optional |
| page_size | Number of entries per page. Defaults to 50 (in case only page was provided). Maximum entries per page is 2000. | Optional |
| limit | The maximum number of entries to return. Default is 50. | Optional |
Context Output
The context output will vary depending on the LDAP server scheme configuration and the attributes provided in the command.
Command Example
!ad-entries-search base_dn="dc=openldap,dc=demisto,dc=int" object_class=top,posixAccount search_filter="(creatorsName=cn=ldapadm,dc=openldap,dc=demisto,dc=int)" attributes=all_operational_attributes page=1 page_size=2
Human Readable Output
| createTimestamp | creatorsName | dn | entryCSN | entryUUID | hasSubordinates | modifiersName | modifyTimestamp | structuralObjectClass | subschemaSubentry |
|---|---|---|---|---|---|---|---|---|---|
| 2019-12-03 11:23:40+00:00 | cn=ldapadm,dc=openldap,dc=demisto,dc=int | dc=openldap,dc=demisto,dc=int | 20191203112340.454387Z#000000#000, # | 19f7dd04-aa0b-1039-811c-25103214a95a | True | cn=ldapadm,dc=openldap,dc=demisto,dc=int | 2019-12-03 11:23:40+00:00 | domain | cn=Subschema |
| 2019-12-03 11:23:40+00:00 | cn=ldapadm,dc=openldap,dc=demisto,dc=int | cn=ldapadm,dc=openldap,dc=demisto,dc=int | 20240708140845.283421Z#000000#000, # | 19f8d2c2-aa0b-1039-811d-25103214a95a | False | cn=ldapadm,dc=openldap,dc=demisto,dc=int | 2024-07-08 14:08:45+00:00 | organizationalRole | cn=Subschema |
Configuration parameters
ldap_server_vendor— LDAP Server Vendor (required)host— Server IP or Host Name (e.g., 192.168.0.1) (required)port— Port. If not specified, default port is 389, or 636 for LDAPS.credentials— User DN (e.g., cn=admin,ou=users,dc=domain,dc=com) (required)base_dn— Base DN (e.g., DC=domain,DC=com) (required)fetch_groups— Auto populate groupsgroup_filter_class— Groups Object Classgroup_identifier_attribute— Groups Unique Identifier Attributemember_identifier_attribute— Group Membership Identifier Attributeuser_filter_class— User Object Classcustom_attributes— User Defined Attributesuser_identifier_attribute— User Unique Identifier Attributepage_size— Page sizeconnection_type— Connection Type (required)ssl_version— SSL Versioninsecure— Trust any certificate (not secure)proxy— Use system proxy settings
Commands (4)
-
ad-authenticatePerforms a simple bind operation on the LDAP server.
-
ad-authenticate-and-rolesPerforms a simple bind operation on the LDAP server and returns the authenticated user's groups.
-
ad-entries-searchA generic LDAP search command.
-
ad-groupsFetches LDAP groups under a given base DN.
sectionorder: - Connect - Collect category: Authentication & Identity Management provider: Open Source commonfields: id: OpenLDAP version: -1 configuration: - additionalinfo: The LDAP vendor to authenticate with. defaultvalue: Auto display: LDAP Server Vendor name: ldap_server_vendor options: - OpenLDAP - Active Directory - Auto required: true type: 15 section: Connect - display: Server IP or Host Name (e.g., 192.168.0.1) name: host required: true type: 0 section: Connect - display: Port. If not specified, default port is 389, or 636 for LDAPS. name: port type: 0 section: Connect advanced: true required: false - display: User DN (e.g., cn=admin,ou=users,dc=domain,dc=com) name: credentials required: true type: 9 section: Connect - display: Base DN (e.g., DC=domain,DC=com) name: base_dn required: true type: 0 section: Connect - defaultvalue: 'true' display: Auto populate groups name: fetch_groups type: 8 section: Collect advanced: true required: false - defaultvalue: posixGroup display: Groups Object Class name: group_filter_class type: 0 additionalinfo: Relevant for OpenLDAP. section: Collect advanced: true required: false - defaultvalue: gidNumber display: Groups Unique Identifier Attribute name: group_identifier_attribute type: 0 additionalinfo: Relevant for OpenLDAP. section: Collect advanced: true required: false - defaultvalue: memberUid display: Group Membership Identifier Attribute name: member_identifier_attribute type: 0 additionalinfo: Relevant for OpenLDAP. section: Collect advanced: true required: false - defaultvalue: posixAccount display: User Object Class name: user_filter_class type: 0 additionalinfo: Relevant for OpenLDAP. section: Collect advanced: true required: false - additionalinfo: User attributes will be added to the user filter in 'ad-authenticate-and-roles'. Attributes should be in the format "attrA=valA,attrB=valB,..." (Relevant for OpenLDAP). display: User Defined Attributes name: custom_attributes type: 0 section: Collect advanced: true required: false - defaultvalue: uid display: User Unique Identifier Attribute name: user_identifier_attribute type: 0 additionalinfo: Relevant for OpenLDAP. section: Collect advanced: true required: false - defaultvalue: '500' display: Page size name: page_size type: 0 section: Collect required: false - defaultvalue: None display: Connection Type name: connection_type options: - None - SSL - Start TLS required: true type: 15 section: Connect - additionalinfo: 'The SSL\TLS version to use in SSL or Start TLS connections types. Default is None. It is recommended to select the TLS_CLIENT option, which auto-negotiate the highest protocol version that both the client and server support, and configure the context client-side connections.' defaultvalue: None display: SSL Version name: ssl_version options: - None - TLS - TLSv1 - TLSv1_1 - TLSv1_2 - TLS_CLIENT type: 15 section: Connect advanced: true required: false - display: Trust any certificate (not secure) name: insecure type: 8 section: Connect advanced: true required: false - display: Use system proxy settings name: proxy type: 8 section: Connect advanced: true required: false description: Authenticate using OpenLDAP or Active Directory. display: LDAP Authentication name: OpenLDAP script: commands: - arguments: - description: The username for simple authentication. name: username required: true - description: The password for simple authentication. name: password required: true secret: true description: Performs a simple bind operation on the LDAP server. name: ad-authenticate - arguments: - description: A list of group object names to fetch. The list is delimited by a number sign (#). name: specific-groups description: Fetches LDAP groups under a given base DN. name: ad-groups - arguments: - description: The username for simple authentication. name: username required: true - description: The password for simple authentication. name: password required: true secret: true - defaultValue: mail description: Mail attribute to return in the response. name: attribute-mail - description: Name attribute to return in the response. Default is "name". name: attribute-name - defaultValue: mobile description: Phone attribute to return in the response. name: attribute-phone - auto: PREDEFINED defaultValue: 'true' description: 'Whether to return the name attribute.' name: attribute-name-pull predefined: - 'true' - 'false' - auto: PREDEFINED defaultValue: 'true' description: 'Whether to return the mail attribute.' name: attribute-mail-pull predefined: - 'true' - 'false' - auto: PREDEFINED defaultValue: 'false' description: 'Whether to return the phone attribute.' name: attribute-phone-pull predefined: - 'true' - 'false' description: Performs a simple bind operation on the LDAP server and returns the authenticated user's groups. name: ad-authenticate-and-roles - arguments: - description: The location in the DIT where the search will start. Default is the provided Base DN in the configuration. name: search_base required: false - description: A string that describes what you are searching for. When provided with additional filter arguments, the OR join operator is used. If not provided, and no other filter arguments are present, all entries are returned. Search filters are based on assertions. One assertion is a bracketed expression that affirms something about an attribute and its values, as (givenName=John) or (maxRetries>=10). On the server, each assertion resolves to True, False, or Undefined (which is treated as False) for one or more entries in the DIT. Assertions can be grouped in boolean groups where all assertions (and group, specified with &) or at least one assertion (or group, specified with |) must be True. A single assertion can be negated (not group, specified with !). Each group must be bracketed, allowing for recursive filters. Operators allowed in an assertion are = (equal), <= (less than or equal), >= (greater than or equal), =* (present), ~= (approximate), and := (extensible). Surprisingly the less than and the greater than operators don’t exist in the LDAP filter syntax. The aproximate and the extensible operators are obscure and seldom used. In an equality filter you can use the * character as a wildcard. name: search_filter required: false - auto : PREDEFINED defaultValue: 'SUBTREE' description: Specifies how broad the search context. 'BASE'- retrieves attributes of the entry specified in the search_base. 'LEVEL'- retrieves attributes of the entries contained in the search_base. The base must reference a container object. 'SUBTREE' - retrieves attributes of the entries specified in the search_base and all subordinate containers downward. name: search_scope predefined: - 'BASE' - 'LEVEL' - 'SUBTREE' - auto : PREDEFINED defaultValue: 'all' description: A comma-separated list of attributes to return in the response. If attributes is 'none', no attributes will be returned except the dn. If attributes is 'all_user_attributes' or 'all_operational_attributes', all user attributes or all operational attributes are returned. If attributes is 'all', both user and operational attributes are returned. name: attributes predefined: - 'none' - 'all_user_attributes' - 'all_operational_attributes' - 'all' - description: A comma-separated list of CNs to filter the search by (AND operator is used to join them). name: cn - description: A comma-separated list of UIDs to filter the search by (AND operator is used to join them). name: uid - description: A comma-separated list of objectClasses to filter the search by (AND operator is used to join them). name: object_class - description: A comma-separated list of descriptions to filter the search by (AND operator is used to join them). name: description - name: page description: Page to return. - name: page_size description: Number of entries per page. Defaults to 50 (in case only page was provided). Maximum entries per page is 2000. - name: limit description: The maximum number of entries to return. defaultValue: 50 description: A generic LDAP search command. name: ad-entries-search dockerimage: demisto/py3-tools:1.0.0.10895515 runonce: false script: '-' subtype: python3 type: python tests: - OpenLDAP - Test - LDAP Authentication - Test fromversion: 5.0.0