forked from lsoumille/ActiveDirectoryAnalyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LDAP_User.json
44 lines (44 loc) · 1.05 KB
/
LDAP_User.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "LDAP_User",
"version": "1.0",
"author": "Aaron Kaplan based on the original code by Soumille Lucas",
"url": "https://github.com/TheHive-Project/Cortex-Analyzers",
"license": "Apache",
"description": "Get all attributes for an LDAP object",
"dataTypeList": ["username"],
"baseConfig": "LDAP",
"config": {
"service": "ldap-user"
},
"configurationItems": [
{
"name": "server",
"description": "LDAP server",
"type": "string",
"multi": false,
"required": true
},
{
"name": "bind_username",
"description": "Username used to bind to LDAP",
"type": "string",
"multi": false,
"required": true
},
{
"name": "bind_password",
"description": "Password used to bind to LDAP",
"type": "string",
"multi": false,
"required": true
},
{
"name": "baseDN",
"description": "DN used to search in LDAP",
"type": "string",
"multi": false,
"required": true
}
],
"command": "LDAPAnalyzer/LDAP_Query.py"
}