-
Notifications
You must be signed in to change notification settings - Fork 2
/
blacklist.json
44 lines (40 loc) · 1.2 KB
/
blacklist.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
{"blacklist": [
{
"name": "Servers",
"selectors": {
"ComputerName": [
{
"type": "regex",
"value": "(PROD|DEV|TEST).*"
},
{"type":"text","value":"DMZGATEWAY"}
]
},
"severity": "high"
},
{
"name": "Admin user detection blacklist",
"selectors": {
"UserName": [
{
"type": "regex",
"value": "adm\\..*"
}
]
},
"severity": "high"
},
{
"name": "Blacklisted users",
"selectors": {
"UserName": [
{
"type": "file",
"value": "/opt/thehive-falcon/blacklisted-users.txt"
}
]
},
"severity": "high"
}
]
}