-
Notifications
You must be signed in to change notification settings - Fork 3
/
AD_User.json
44 lines (44 loc) · 1.07 KB
/
AD_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": "AD_User",
"version": "1.0",
"author": "Soumille Lucas",
"url": "https://github.com/TheHive-Project/Cortex-Analyzers",
"license": "AGPL-V3",
"description": "Get all attributes for a AD object",
"dataTypeList": ["username"],
"baseConfig": "ActiveDirectory",
"config": {
"service": "ad-user"
},
"configurationItems": [
{
"name": "server",
"description": "Active Directory server",
"type": "string",
"multi": false,
"required": true
},
{
"name": "bind_username",
"description": "Username used to bind Active Directory",
"type": "string",
"multi": false,
"required": true
},
{
"name": "bind_password",
"description": "Password used to bind Active Directory",
"type": "string",
"multi": false,
"required": true
},
{
"name": "baseDN",
"description": "DN used to search in Active Directory",
"type": "string",
"multi": false,
"required": true
}
],
"command": "ActiveDirectoryAnalyzer/ActiveDirectory_Query.py"
}