@waftester/cli 2.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +80 -0
- package/LICENSE-COMMUNITY +28 -0
- package/README.md +121 -0
- package/bin/cli.js +152 -0
- package/package.json +52 -0
- package/payloads/community/README.md +45 -0
- package/payloads/community/ai/ml-poisoning.json +173 -0
- package/payloads/community/ai/prompt-injection.json +247 -0
- package/payloads/community/ai/workflow-abuse.json +222 -0
- package/payloads/community/auth/jwt.json +855 -0
- package/payloads/community/auth/login-bypass.json +623 -0
- package/payloads/community/auth/mfa.json +402 -0
- package/payloads/community/auth/oauth.json +421 -0
- package/payloads/community/auth/open-redirect.json +1028 -0
- package/payloads/community/auth/session.json +404 -0
- package/payloads/community/cache/deception.json +402 -0
- package/payloads/community/cache/poisoning.json +403 -0
- package/payloads/community/deserialization/gadget.json +375 -0
- package/payloads/community/deserialization/prototype.json +370 -0
- package/payloads/community/fuzz/content-type.json +397 -0
- package/payloads/community/fuzz/headers.json +401 -0
- package/payloads/community/fuzz/methods.json +397 -0
- package/payloads/community/fuzz/obfuscation.json +362 -0
- package/payloads/community/fuzz/special-chars.json +740 -0
- package/payloads/community/fuzz/waf-bypass.json +452 -0
- package/payloads/community/graphql/batching-abuse.json +271 -0
- package/payloads/community/graphql/depth-limit.json +271 -0
- package/payloads/community/graphql/introspection.json +267 -0
- package/payloads/community/injection/crlf.json +569 -0
- package/payloads/community/injection/ldap.json +357 -0
- package/payloads/community/injection/nosqli.json +529 -0
- package/payloads/community/injection/oscmd.json +662 -0
- package/payloads/community/injection/rce-polyglots.json +452 -0
- package/payloads/community/injection/sqli.json +681 -0
- package/payloads/community/injection/ssti.json +584 -0
- package/payloads/community/injection/upload-attacks.json +632 -0
- package/payloads/community/injection/xpath.json +357 -0
- package/payloads/community/injection/xxe.json +716 -0
- package/payloads/community/logic/forced-browsing.json +405 -0
- package/payloads/community/logic/idor.json +1026 -0
- package/payloads/community/logic/privilege.json +337 -0
- package/payloads/community/media/exif-injection.json +225 -0
- package/payloads/community/media/metadata-poison.json +239 -0
- package/payloads/community/protocol/http-smuggling.json +798 -0
- package/payloads/community/protocol/http2-attacks.json +382 -0
- package/payloads/community/protocol/websocket-abuse.json +375 -0
- package/payloads/community/rate-limit/burst-simulation.json +286 -0
- package/payloads/community/rate-limit/bypass-attempts.json +326 -0
- package/payloads/community/rate-limit/zone-tests.json +332 -0
- package/payloads/community/services/authentik.json +415 -0
- package/payloads/community/services/immich.json +423 -0
- package/payloads/community/services/n8n.json +366 -0
- package/payloads/community/sqli-basic.json +182 -0
- package/payloads/community/ssrf/cloud-metadata.json +999 -0
- package/payloads/community/ssrf/dns-rebinding.json +503 -0
- package/payloads/community/ssrf/internal-networks.json +627 -0
- package/payloads/community/ssrf/protocol-smuggling.json +350 -0
- package/payloads/community/ssti/multi-language-templates.json +191 -0
- package/payloads/community/ssti/python-templates.json +200 -0
- package/payloads/community/traversal/basic.json +675 -0
- package/payloads/community/traversal/cloud-credentials.json +107 -0
- package/payloads/community/traversal/config-files.json +193 -0
- package/payloads/community/traversal/encoding.json +558 -0
- package/payloads/community/traversal/null-byte.json +105 -0
- package/payloads/community/traversal/symlink.json +93 -0
- package/payloads/community/traversal/unicode.json +134 -0
- package/payloads/community/traversal/unix-advanced.json +195 -0
- package/payloads/community/traversal/windows-advanced.json +195 -0
- package/payloads/community/waf-bypass/cloudflare-bypass.json +102 -0
- package/payloads/community/waf-bypass/encoding-bypass.json +120 -0
- package/payloads/community/waf-bypass/evasion-techniques.json +164 -0
- package/payloads/community/waf-bypass/hpp-bypass.json +92 -0
- package/payloads/community/waf-bypass/modsecurity-crs.json +220 -0
- package/payloads/community/waf-bypass/protocol-attacks.json +101 -0
- package/payloads/community/waf-bypass/sqlmap-tamper.json +252 -0
- package/payloads/community/waf-bypass/unicode-charset.json +152 -0
- package/payloads/community/waf-bypass/vendor-bypasses.json +72 -0
- package/payloads/community/waf-validation/README.md +172 -0
- package/payloads/community/waf-validation/bypass-techniques.json +272 -0
- package/payloads/community/waf-validation/custom-rules.json +952 -0
- package/payloads/community/waf-validation/evasion-techniques.json +272 -0
- package/payloads/community/waf-validation/modsecurity-core.json +151 -0
- package/payloads/community/waf-validation/owasp-top10.json +236 -0
- package/payloads/community/waf-validation/regression-tests.json +227 -0
- package/payloads/community/xss/csp-bypass.json +431 -0
- package/payloads/community/xss/dom.json +389 -0
- package/payloads/community/xss/filter-bypass.json +1242 -0
- package/payloads/community/xss/mutation.json +263 -0
- package/payloads/community/xss/polyglots.json +371 -0
- package/payloads/community/xss/reflected.json +187 -0
- package/payloads/community/xss/stored.json +330 -0
- package/payloads/crlf-injection.json +182 -0
- package/payloads/ids-map.json +155 -0
- package/payloads/ldap-injection.json +182 -0
- package/payloads/nosql-injection.json +227 -0
- package/payloads/prototype-pollution.json +182 -0
- package/payloads/request-smuggling.json +182 -0
- package/payloads/version.json +28 -0
- package/payloads/xss-advanced.json +227 -0
- package/templates/README.md +221 -0
- package/templates/nuclei/http/waf-bypass/crlf-bypass.yaml +146 -0
- package/templates/nuclei/http/waf-bypass/lfi-bypass.yaml +152 -0
- package/templates/nuclei/http/waf-bypass/nosqli-bypass.yaml +166 -0
- package/templates/nuclei/http/waf-bypass/rce-bypass.yaml +171 -0
- package/templates/nuclei/http/waf-bypass/sqli-basic.yaml +142 -0
- package/templates/nuclei/http/waf-bypass/sqli-evasion.yaml +192 -0
- package/templates/nuclei/http/waf-bypass/ssrf-bypass.yaml +130 -0
- package/templates/nuclei/http/waf-bypass/ssti-bypass.yaml +147 -0
- package/templates/nuclei/http/waf-bypass/xss-basic.yaml +163 -0
- package/templates/nuclei/http/waf-bypass/xss-evasion.yaml +217 -0
- package/templates/nuclei/http/waf-bypass/xxe-bypass.yaml +204 -0
- package/templates/nuclei/http/waf-detection/akamai-detect.yaml +105 -0
- package/templates/nuclei/http/waf-detection/aws-waf-detect.yaml +115 -0
- package/templates/nuclei/http/waf-detection/azure-waf-detect.yaml +114 -0
- package/templates/nuclei/http/waf-detection/cloudflare-detect.yaml +121 -0
- package/templates/nuclei/http/waf-detection/modsecurity-detect.yaml +129 -0
- package/templates/nuclei/workflows/waf-assessment-workflow.yaml +71 -0
- package/templates/output/asff.tmpl +61 -0
- package/templates/output/csv.tmpl +4 -0
- package/templates/output/junit.tmpl +34 -0
- package/templates/output/markdown-report.tmpl +92 -0
- package/templates/output/slack-notification.tmpl +95 -0
- package/templates/output/text-summary.tmpl +56 -0
- package/templates/overrides/api-only.yaml +130 -0
- package/templates/overrides/crs-tuning.yaml +204 -0
- package/templates/overrides/false-positive-suppression.yaml +159 -0
- package/templates/policies/owasp-top10.yaml +152 -0
- package/templates/policies/pci-dss.yaml +124 -0
- package/templates/policies/permissive.yaml +40 -0
- package/templates/policies/standard.yaml +57 -0
- package/templates/policies/strict.yaml +72 -0
- package/templates/report-configs/compliance.yaml +173 -0
- package/templates/report-configs/dark.yaml +136 -0
- package/templates/report-configs/enterprise.yaml +175 -0
- package/templates/report-configs/minimal.yaml +84 -0
- package/templates/report-configs/print.yaml +139 -0
- package/templates/workflows/api-scan.yaml +132 -0
- package/templates/workflows/ci-gate.yaml +129 -0
- package/templates/workflows/full-scan.yaml +133 -0
- package/templates/workflows/quick-probe.yaml +80 -0
- package/templates/workflows/waf-detection.yaml +89 -0
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "INJ-LDAP-300",
|
|
4
|
+
"payload": "*",
|
|
5
|
+
"tags": [
|
|
6
|
+
"basic",
|
|
7
|
+
"wildcard",
|
|
8
|
+
"quick"
|
|
9
|
+
],
|
|
10
|
+
"expected_block": true,
|
|
11
|
+
"severity_hint": "Critical",
|
|
12
|
+
"notes": "LDAP wildcard - matches all entries",
|
|
13
|
+
"category": "Injection"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"id": "INJ-LDAP-301",
|
|
17
|
+
"payload": "admin)(|(password=*))",
|
|
18
|
+
"tags": [
|
|
19
|
+
"filter-bypass",
|
|
20
|
+
"quick"
|
|
21
|
+
],
|
|
22
|
+
"expected_block": true,
|
|
23
|
+
"severity_hint": "Critical",
|
|
24
|
+
"notes": "LDAP filter bypass - authentication without password",
|
|
25
|
+
"category": "Injection"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "INJ-LDAP-302",
|
|
29
|
+
"payload": "*)(uid=*))(|(uid=*",
|
|
30
|
+
"tags": [
|
|
31
|
+
"filter-bypass"
|
|
32
|
+
],
|
|
33
|
+
"expected_block": true,
|
|
34
|
+
"severity_hint": "Critical",
|
|
35
|
+
"notes": "LDAP filter injection with OR logic",
|
|
36
|
+
"category": "Injection"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "INJ-LDAP-303",
|
|
40
|
+
"payload": "admin)(&(password=*)",
|
|
41
|
+
"tags": [
|
|
42
|
+
"filter-bypass"
|
|
43
|
+
],
|
|
44
|
+
"expected_block": true,
|
|
45
|
+
"severity_hint": "Critical",
|
|
46
|
+
"notes": "LDAP AND operator with wildcard",
|
|
47
|
+
"category": "Injection"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"id": "INJ-LDAP-304",
|
|
51
|
+
"payload": "*()|&'",
|
|
52
|
+
"tags": [
|
|
53
|
+
"special-chars"
|
|
54
|
+
],
|
|
55
|
+
"expected_block": true,
|
|
56
|
+
"severity_hint": "High",
|
|
57
|
+
"notes": "LDAP special characters - filter corruption",
|
|
58
|
+
"category": "Injection"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "INJ-LDAP-305",
|
|
62
|
+
"payload": "admin*",
|
|
63
|
+
"tags": [
|
|
64
|
+
"wildcard",
|
|
65
|
+
"enumeration"
|
|
66
|
+
],
|
|
67
|
+
"expected_block": true,
|
|
68
|
+
"severity_hint": "High",
|
|
69
|
+
"notes": "LDAP prefix wildcard - username enumeration",
|
|
70
|
+
"category": "Injection"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "INJ-LDAP-306",
|
|
74
|
+
"payload": "*admin*",
|
|
75
|
+
"tags": [
|
|
76
|
+
"wildcard",
|
|
77
|
+
"enumeration"
|
|
78
|
+
],
|
|
79
|
+
"expected_block": true,
|
|
80
|
+
"severity_hint": "High",
|
|
81
|
+
"notes": "LDAP infix wildcard - substring search",
|
|
82
|
+
"category": "Injection"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"id": "INJ-LDAP-307",
|
|
86
|
+
"payload": ")(objectClass=*",
|
|
87
|
+
"tags": [
|
|
88
|
+
"enumeration"
|
|
89
|
+
],
|
|
90
|
+
"expected_block": true,
|
|
91
|
+
"severity_hint": "High",
|
|
92
|
+
"notes": "LDAP objectClass enumeration - all objects",
|
|
93
|
+
"category": "Injection"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "INJ-LDAP-308",
|
|
97
|
+
"payload": "admin)(!(&(1=0",
|
|
98
|
+
"tags": [
|
|
99
|
+
"filter-bypass",
|
|
100
|
+
"negation"
|
|
101
|
+
],
|
|
102
|
+
"expected_block": true,
|
|
103
|
+
"severity_hint": "Critical",
|
|
104
|
+
"notes": "LDAP negation bypass - complex filter manipulation",
|
|
105
|
+
"category": "Injection"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": "INJ-LDAP-309",
|
|
109
|
+
"payload": "\\2a",
|
|
110
|
+
"tags": [
|
|
111
|
+
"encoded",
|
|
112
|
+
"wildcard"
|
|
113
|
+
],
|
|
114
|
+
"expected_block": true,
|
|
115
|
+
"severity_hint": "High",
|
|
116
|
+
"notes": "LDAP encoded asterisk - hex wildcard",
|
|
117
|
+
"category": "Injection"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"id": "INJ-LDAP-310",
|
|
121
|
+
"payload": "admin)(cn=*)",
|
|
122
|
+
"tags": [
|
|
123
|
+
"filter-bypass"
|
|
124
|
+
],
|
|
125
|
+
"expected_block": true,
|
|
126
|
+
"severity_hint": "Critical",
|
|
127
|
+
"notes": "LDAP cn (common name) wildcard bypass",
|
|
128
|
+
"category": "Injection"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"id": "INJ-LDAP-311",
|
|
132
|
+
"payload": "admin)(userPassword=*)",
|
|
133
|
+
"tags": [
|
|
134
|
+
"filter-bypass",
|
|
135
|
+
"sensitive"
|
|
136
|
+
],
|
|
137
|
+
"expected_block": true,
|
|
138
|
+
"severity_hint": "Critical",
|
|
139
|
+
"notes": "LDAP userPassword field bypass",
|
|
140
|
+
"category": "Injection"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "INJ-LDAP-312",
|
|
144
|
+
"payload": "*))(|(cn=*",
|
|
145
|
+
"tags": [
|
|
146
|
+
"filter-bypass",
|
|
147
|
+
"or-logic"
|
|
148
|
+
],
|
|
149
|
+
"expected_block": true,
|
|
150
|
+
"severity_hint": "Critical",
|
|
151
|
+
"notes": "LDAP OR injection - match any cn",
|
|
152
|
+
"category": "Injection"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"id": "INJ-LDAP-313",
|
|
156
|
+
"payload": "admin)(|(userAccountControl:1.2.840.113556.1.4.803:=512))",
|
|
157
|
+
"tags": [
|
|
158
|
+
"active-directory",
|
|
159
|
+
"enumeration"
|
|
160
|
+
],
|
|
161
|
+
"expected_block": true,
|
|
162
|
+
"severity_hint": "High",
|
|
163
|
+
"notes": "Active Directory LDAP - normal user account enumeration",
|
|
164
|
+
"category": "Injection"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"id": "INJ-LDAP-314",
|
|
168
|
+
"payload": "*)(objectCategory=person)(sAMAccountName=*",
|
|
169
|
+
"tags": [
|
|
170
|
+
"active-directory"
|
|
171
|
+
],
|
|
172
|
+
"expected_block": true,
|
|
173
|
+
"severity_hint": "High",
|
|
174
|
+
"notes": "Active Directory - enumerate all person objects",
|
|
175
|
+
"category": "Injection"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"id": "INJ-LDAP-315",
|
|
179
|
+
"payload": ")(cn=*)(|(cn=*",
|
|
180
|
+
"tags": ["filter-bypass", "injection"],
|
|
181
|
+
"expected_block": true,
|
|
182
|
+
"severity_hint": "Critical",
|
|
183
|
+
"notes": "LDAP filter bypass with nested OR",
|
|
184
|
+
"category": "Injection"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"id": "INJ-LDAP-316",
|
|
188
|
+
"payload": "*)(userPassword=*",
|
|
189
|
+
"tags": ["password-disclosure", "enumeration"],
|
|
190
|
+
"expected_block": true,
|
|
191
|
+
"severity_hint": "Critical",
|
|
192
|
+
"notes": "LDAP password attribute enumeration",
|
|
193
|
+
"category": "Injection"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "INJ-LDAP-317",
|
|
197
|
+
"payload": "admin\\00",
|
|
198
|
+
"tags": ["null-byte", "truncation"],
|
|
199
|
+
"expected_block": true,
|
|
200
|
+
"severity_hint": "High",
|
|
201
|
+
"notes": "LDAP null byte truncation",
|
|
202
|
+
"category": "Injection"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"id": "INJ-LDAP-318",
|
|
206
|
+
"payload": "*)(mail=*@*",
|
|
207
|
+
"tags": ["enumeration", "email"],
|
|
208
|
+
"expected_block": true,
|
|
209
|
+
"severity_hint": "Medium",
|
|
210
|
+
"notes": "LDAP email enumeration",
|
|
211
|
+
"category": "Injection"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"id": "INJ-LDAP-319",
|
|
215
|
+
"payload": "*)(memberOf=CN=Domain Admins*",
|
|
216
|
+
"tags": ["active-directory", "privilege-enum"],
|
|
217
|
+
"expected_block": true,
|
|
218
|
+
"severity_hint": "Critical",
|
|
219
|
+
"notes": "AD Domain Admins group enumeration",
|
|
220
|
+
"category": "Injection"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"id": "INJ-LDAP-320",
|
|
224
|
+
"payload": "*)(servicePrincipalName=*",
|
|
225
|
+
"tags": ["active-directory", "kerberoasting"],
|
|
226
|
+
"expected_block": true,
|
|
227
|
+
"severity_hint": "Critical",
|
|
228
|
+
"notes": "AD SPN enumeration for Kerberoasting",
|
|
229
|
+
"category": "Injection"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"id": "INJ-LDAP-321",
|
|
233
|
+
"payload": "*)(msDS-AllowedToDelegateTo=*",
|
|
234
|
+
"tags": ["active-directory", "delegation"],
|
|
235
|
+
"expected_block": true,
|
|
236
|
+
"severity_hint": "Critical",
|
|
237
|
+
"notes": "AD constrained delegation enumeration",
|
|
238
|
+
"category": "Injection"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "INJ-LDAP-322",
|
|
242
|
+
"payload": "*)(adminCount=1)",
|
|
243
|
+
"tags": ["active-directory", "admin-enum"],
|
|
244
|
+
"expected_block": true,
|
|
245
|
+
"severity_hint": "Critical",
|
|
246
|
+
"notes": "AD admin account enumeration",
|
|
247
|
+
"category": "Injection"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"id": "INJ-LDAP-323",
|
|
251
|
+
"payload": "*)(objectClass=computer)(operatingSystem=*Server*",
|
|
252
|
+
"tags": ["active-directory", "server-enum"],
|
|
253
|
+
"expected_block": true,
|
|
254
|
+
"severity_hint": "High",
|
|
255
|
+
"notes": "AD server enumeration",
|
|
256
|
+
"category": "Injection"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"id": "INJ-LDAP-324",
|
|
260
|
+
"payload": "*)(objectClass=group)(member=*",
|
|
261
|
+
"tags": ["active-directory", "group-enum"],
|
|
262
|
+
"expected_block": true,
|
|
263
|
+
"severity_hint": "High",
|
|
264
|
+
"notes": "AD group membership enumeration",
|
|
265
|
+
"category": "Injection"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"id": "INJ-LDAP-325",
|
|
269
|
+
"payload": "%2a%29%28%7c%28uid%3d%2a",
|
|
270
|
+
"tags": ["url-encoded", "filter-bypass"],
|
|
271
|
+
"expected_block": true,
|
|
272
|
+
"severity_hint": "Critical",
|
|
273
|
+
"notes": "URL-encoded LDAP injection",
|
|
274
|
+
"category": "Injection"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"id": "INJ-LDAP-326",
|
|
278
|
+
"payload": "%5c%32%61%5c%32%39%5c%32%38%5c%37%63%5c%32%38%75%69%64%5c%33%64%5c%32%61",
|
|
279
|
+
"tags": ["hex-encoded", "filter-bypass"],
|
|
280
|
+
"expected_block": true,
|
|
281
|
+
"severity_hint": "Critical",
|
|
282
|
+
"notes": "Hex-encoded LDAP injection",
|
|
283
|
+
"category": "Injection"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"id": "INJ-LDAP-327",
|
|
287
|
+
"payload": "*)(!(userAccountControl:1.2.840.113556.1.4.803:=2))",
|
|
288
|
+
"tags": ["active-directory", "enabled-accounts"],
|
|
289
|
+
"expected_block": true,
|
|
290
|
+
"severity_hint": "High",
|
|
291
|
+
"notes": "AD enabled accounts enumeration",
|
|
292
|
+
"category": "Injection"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"id": "INJ-LDAP-328",
|
|
296
|
+
"payload": "*)(pwdLastSet=0)",
|
|
297
|
+
"tags": ["active-directory", "weak-accounts"],
|
|
298
|
+
"expected_block": true,
|
|
299
|
+
"severity_hint": "High",
|
|
300
|
+
"notes": "AD accounts with password never set",
|
|
301
|
+
"category": "Injection"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"id": "INJ-LDAP-329",
|
|
305
|
+
"payload": "*)(userAccountControl:1.2.840.113556.1.4.803:=524288)",
|
|
306
|
+
"tags": ["active-directory", "trusted-delegation"],
|
|
307
|
+
"expected_block": true,
|
|
308
|
+
"severity_hint": "Critical",
|
|
309
|
+
"notes": "AD trusted for delegation accounts",
|
|
310
|
+
"category": "Injection"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"id": "INJ-LDAP-330",
|
|
314
|
+
"payload": "*))%00",
|
|
315
|
+
"tags": ["null-byte", "filter-bypass"],
|
|
316
|
+
"expected_block": true,
|
|
317
|
+
"severity_hint": "Critical",
|
|
318
|
+
"notes": "LDAP null byte filter termination",
|
|
319
|
+
"category": "Injection"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"id": "INJ-LDAP-331",
|
|
323
|
+
"payload": "x])(cn=*))(|(cn=",
|
|
324
|
+
"tags": ["bracket-injection", "filter-bypass"],
|
|
325
|
+
"expected_block": true,
|
|
326
|
+
"severity_hint": "Critical",
|
|
327
|
+
"notes": "LDAP bracket injection",
|
|
328
|
+
"category": "Injection"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"id": "INJ-LDAP-332",
|
|
332
|
+
"payload": "*)(objectSid=S-1-5-21-*-500)",
|
|
333
|
+
"tags": ["active-directory", "rid-500"],
|
|
334
|
+
"expected_block": true,
|
|
335
|
+
"severity_hint": "Critical",
|
|
336
|
+
"notes": "AD Administrator RID enumeration",
|
|
337
|
+
"category": "Injection"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"id": "INJ-LDAP-333",
|
|
341
|
+
"payload": "*)(distinguishedName=*,OU=Domain Controllers,*",
|
|
342
|
+
"tags": ["active-directory", "dc-enum"],
|
|
343
|
+
"expected_block": true,
|
|
344
|
+
"severity_hint": "Critical",
|
|
345
|
+
"notes": "AD Domain Controller enumeration",
|
|
346
|
+
"category": "Injection"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"id": "INJ-LDAP-334",
|
|
350
|
+
"payload": "*)(|(objectClass=organizationalUnit))",
|
|
351
|
+
"tags": ["active-directory", "ou-enum"],
|
|
352
|
+
"expected_block": true,
|
|
353
|
+
"severity_hint": "Medium",
|
|
354
|
+
"notes": "AD Organizational Unit enumeration",
|
|
355
|
+
"category": "Injection"
|
|
356
|
+
}
|
|
357
|
+
]
|