-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathReconAuditTemplate_config.json
117 lines (117 loc) · 3.72 KB
/
ReconAuditTemplate_config.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"rules": [
{
"info": "Ignore local and admin accounts, add any other account that has abnormal or is privileged",
"users": ["NT AUTHORITY\\SYSTEM","<Domain Name>\\Administrator","<Domain Name>\\<DC Name>$"],
"action": "allow",
"audit": "off"
},
{
"info": "fingerprint hounds",
"operations": ["search"],
"filter": "805306369",
"action": "allow",
"audit": "on"
},
{
"info": "fingerprint hounds",
"operations": ["search"],
"filter": "805306368",
"action": "allow",
"audit": "on"
},
{
"info": "fingerprint hounds",
"operations": ["search"],
"filter": "soaphound",
"action": "allow",
"audit": "on"
},
{
"info": "fingerprint hounds",
"operations": ["search"],
"attributes": ["profilepath","userpassword","msds-behavior-version","msds-behavior-version","msds-behavior-version","trustattributes","trustdirection","trusttype","unixUserPassword","sIDHistory","operatingSystem","primaryGroupID","NSHostName","certificateTemplates","cACertificate","msPKI-Private-KeyFlag"],
"action": "allow",
"audit": "on"
},
{
"info": "ignore base searches, can't be used to enumerate the directory",
"operations": ["search"],
"scope": "base",
"action": "allow",
"audit": "off"
},
{
"info": "ignore configuration searches",
"operations": ["search"],
"action": "allow",
"dn": "CN=Configuration,DC=<domain>,DC=<suffix>",
"audit": "off"
},
{
"info": "ignore system searches",
"operations": ["search"],
"action": "allow",
"dn": "cn=system,DC=<domain>,DC=<suffix>",
"audit": "off"
},
{
"info": "ignore DNS related searches",
"operations": ["search"],
"action": "allow",
"dn": "DnsZones,DC=<domain>,DC=<suffix>",
"audit": "off"
},
{
"info": "capture wildcard filters (can be used to retreive any object)",
"operations": ["search"],
"action": "allow",
"dn": "DC=<domain>,DC=<suffix>",
"filter": "*",
"audit": "on"
},
{
"info": "capture not filters (can also be used to retreive any object)",
"operations": ["search"],
"action": "allow",
"dn": "DC=<domain>,DC=<suffix>",
"filter": "!",
"audit": "on"
},
{
"info": "ignore common operation of computer accounts",
"operations": ["search"],
"action": "allow",
"dn": "DC=<domain>,DC=<suffix>",
"filter": "sAMAccountName=",
"audit": "off"
},
{
"info": "ignore common requested attribute",
"operations": ["search"],
"action": "allow",
"attributes": ["thumbnailphoto"],
"audit": "off"
},
{
"info": "ignore common operation",
"operations": ["search"],
"action": "allow",
"filter": "proxyAddresses=smtp",
"audit": "off"
},
{
"info": "ignore common operation",
"operations": ["search"],
"action": "allow",
"attributes": ["gPLink","gPOptions"],
"audit": "off"
},
{
"info": "capture any other operation, potentially malicious",
"operations": ["search"],
"action": "allow",
"audit": "on"
}
]
}