@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,623 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "AUTH-LOGIN-001",
|
|
4
|
+
"payload": "' or 1=1--",
|
|
5
|
+
"tags": ["sqli", "login-bypass", "quick", "critical"],
|
|
6
|
+
"expected_block": true,
|
|
7
|
+
"severity_hint": "Critical",
|
|
8
|
+
"notes": "Classic SQL injection login bypass",
|
|
9
|
+
"category": "Auth"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"id": "AUTH-LOGIN-002",
|
|
13
|
+
"payload": "' or 1=1#",
|
|
14
|
+
"tags": ["sqli", "login-bypass", "mysql"],
|
|
15
|
+
"expected_block": true,
|
|
16
|
+
"severity_hint": "Critical",
|
|
17
|
+
"notes": "MySQL comment login bypass",
|
|
18
|
+
"category": "Auth"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"id": "AUTH-LOGIN-003",
|
|
22
|
+
"payload": "' or 1=1/*",
|
|
23
|
+
"tags": ["sqli", "login-bypass", "multiline"],
|
|
24
|
+
"expected_block": true,
|
|
25
|
+
"severity_hint": "Critical",
|
|
26
|
+
"notes": "Multi-line comment login bypass",
|
|
27
|
+
"category": "Auth"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "AUTH-LOGIN-004",
|
|
31
|
+
"payload": "admin'--",
|
|
32
|
+
"tags": ["sqli", "login-bypass", "admin"],
|
|
33
|
+
"expected_block": true,
|
|
34
|
+
"severity_hint": "Critical",
|
|
35
|
+
"notes": "Admin username SQL injection",
|
|
36
|
+
"category": "Auth"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "AUTH-LOGIN-005",
|
|
40
|
+
"payload": "admin' #",
|
|
41
|
+
"tags": ["sqli", "login-bypass", "admin"],
|
|
42
|
+
"expected_block": true,
|
|
43
|
+
"severity_hint": "Critical",
|
|
44
|
+
"notes": "Admin with MySQL comment",
|
|
45
|
+
"category": "Auth"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "AUTH-LOGIN-006",
|
|
49
|
+
"payload": "admin'/*",
|
|
50
|
+
"tags": ["sqli", "login-bypass", "admin"],
|
|
51
|
+
"expected_block": true,
|
|
52
|
+
"severity_hint": "Critical",
|
|
53
|
+
"notes": "Admin with multiline comment",
|
|
54
|
+
"category": "Auth"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": "AUTH-LOGIN-007",
|
|
58
|
+
"payload": "' or ''='",
|
|
59
|
+
"tags": ["sqli", "login-bypass"],
|
|
60
|
+
"expected_block": true,
|
|
61
|
+
"severity_hint": "Critical",
|
|
62
|
+
"notes": "Empty string comparison bypass",
|
|
63
|
+
"category": "Auth"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "AUTH-LOGIN-008",
|
|
67
|
+
"payload": "' or 'x'='x",
|
|
68
|
+
"tags": ["sqli", "login-bypass"],
|
|
69
|
+
"expected_block": true,
|
|
70
|
+
"severity_hint": "Critical",
|
|
71
|
+
"notes": "String equality bypass",
|
|
72
|
+
"category": "Auth"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": "AUTH-LOGIN-009",
|
|
76
|
+
"payload": "\" or \"x\"=\"x",
|
|
77
|
+
"tags": ["sqli", "login-bypass", "double-quote"],
|
|
78
|
+
"expected_block": true,
|
|
79
|
+
"severity_hint": "Critical",
|
|
80
|
+
"notes": "Double quote string bypass",
|
|
81
|
+
"category": "Auth"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "AUTH-LOGIN-010",
|
|
85
|
+
"payload": "') or ('x'='x",
|
|
86
|
+
"tags": ["sqli", "login-bypass", "parenthesis"],
|
|
87
|
+
"expected_block": true,
|
|
88
|
+
"severity_hint": "Critical",
|
|
89
|
+
"notes": "Parenthesis escaped bypass",
|
|
90
|
+
"category": "Auth"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": "AUTH-LOGIN-011",
|
|
94
|
+
"payload": "\" or 1=1--",
|
|
95
|
+
"tags": ["sqli", "login-bypass", "double-quote"],
|
|
96
|
+
"expected_block": true,
|
|
97
|
+
"severity_hint": "Critical",
|
|
98
|
+
"notes": "Double quote SQL bypass",
|
|
99
|
+
"category": "Auth"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "AUTH-LOGIN-012",
|
|
103
|
+
"payload": "admin\" or \"1\"=\"1",
|
|
104
|
+
"tags": ["sqli", "login-bypass", "admin"],
|
|
105
|
+
"expected_block": true,
|
|
106
|
+
"severity_hint": "Critical",
|
|
107
|
+
"notes": "Admin double quote bypass",
|
|
108
|
+
"category": "Auth"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "AUTH-LOGIN-013",
|
|
112
|
+
"payload": "1234 ' AND 1=0 UNION ALL SELECT 'admin', '81dc9bdb52d04dc20036dbd8313ed055",
|
|
113
|
+
"tags": ["sqli", "union", "md5-hash"],
|
|
114
|
+
"expected_block": true,
|
|
115
|
+
"severity_hint": "Critical",
|
|
116
|
+
"notes": "UNION based login bypass with MD5 hash",
|
|
117
|
+
"category": "Auth"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"id": "AUTH-LOGIN-014",
|
|
121
|
+
"payload": "' UNION SELECT 1,@@version--",
|
|
122
|
+
"tags": ["sqli", "union", "version"],
|
|
123
|
+
"expected_block": true,
|
|
124
|
+
"severity_hint": "Critical",
|
|
125
|
+
"notes": "UNION select version info",
|
|
126
|
+
"category": "Auth"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "AUTH-LOGIN-015",
|
|
130
|
+
"payload": "' UNION ALL SELECT NULL,NULL--",
|
|
131
|
+
"tags": ["sqli", "union", "null"],
|
|
132
|
+
"expected_block": true,
|
|
133
|
+
"severity_hint": "Critical",
|
|
134
|
+
"notes": "UNION null column enumeration",
|
|
135
|
+
"category": "Auth"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"id": "AUTH-LOGIN-016",
|
|
139
|
+
"payload": "admin') or ('1'='1",
|
|
140
|
+
"tags": ["sqli", "login-bypass", "parenthesis"],
|
|
141
|
+
"expected_block": true,
|
|
142
|
+
"severity_hint": "Critical",
|
|
143
|
+
"notes": "Admin with parenthesis bypass",
|
|
144
|
+
"category": "Auth"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"id": "AUTH-LOGIN-017",
|
|
148
|
+
"payload": "admin\") or (\"1\"=\"1",
|
|
149
|
+
"tags": ["sqli", "login-bypass", "double-quote"],
|
|
150
|
+
"expected_block": true,
|
|
151
|
+
"severity_hint": "Critical",
|
|
152
|
+
"notes": "Admin double quote parenthesis",
|
|
153
|
+
"category": "Auth"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "AUTH-LOGIN-018",
|
|
157
|
+
"payload": "' or a=a--",
|
|
158
|
+
"tags": ["sqli", "login-bypass", "alpha"],
|
|
159
|
+
"expected_block": true,
|
|
160
|
+
"severity_hint": "Critical",
|
|
161
|
+
"notes": "Alpha comparison bypass",
|
|
162
|
+
"category": "Auth"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "AUTH-LOGIN-019",
|
|
166
|
+
"payload": "\" or \"a\"=\"a",
|
|
167
|
+
"tags": ["sqli", "login-bypass"],
|
|
168
|
+
"expected_block": true,
|
|
169
|
+
"severity_hint": "Critical",
|
|
170
|
+
"notes": "Double quote alpha bypass",
|
|
171
|
+
"category": "Auth"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"id": "AUTH-LOGIN-020",
|
|
175
|
+
"payload": "' or 0=0 #",
|
|
176
|
+
"tags": ["sqli", "login-bypass"],
|
|
177
|
+
"expected_block": true,
|
|
178
|
+
"severity_hint": "Critical",
|
|
179
|
+
"notes": "Zero comparison bypass",
|
|
180
|
+
"category": "Auth"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"id": "AUTH-NOSQL-001",
|
|
184
|
+
"payload": "{\"$ne\": 1}",
|
|
185
|
+
"tags": ["nosql", "mongodb", "login-bypass", "quick"],
|
|
186
|
+
"expected_block": true,
|
|
187
|
+
"severity_hint": "Critical",
|
|
188
|
+
"notes": "MongoDB not-equal bypass",
|
|
189
|
+
"category": "Auth"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"id": "AUTH-NOSQL-002",
|
|
193
|
+
"payload": "{\"$gt\": \"\"}",
|
|
194
|
+
"tags": ["nosql", "mongodb", "login-bypass"],
|
|
195
|
+
"expected_block": true,
|
|
196
|
+
"severity_hint": "Critical",
|
|
197
|
+
"notes": "MongoDB greater-than bypass",
|
|
198
|
+
"category": "Auth"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"id": "AUTH-NOSQL-003",
|
|
202
|
+
"payload": "{\"$regex\": \".*\"}",
|
|
203
|
+
"tags": ["nosql", "mongodb", "regex"],
|
|
204
|
+
"expected_block": true,
|
|
205
|
+
"severity_hint": "Critical",
|
|
206
|
+
"notes": "MongoDB regex match-all",
|
|
207
|
+
"category": "Auth"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"id": "AUTH-NOSQL-004",
|
|
211
|
+
"payload": "{\"$where\": \"1==1\"}",
|
|
212
|
+
"tags": ["nosql", "mongodb", "where"],
|
|
213
|
+
"expected_block": true,
|
|
214
|
+
"severity_hint": "Critical",
|
|
215
|
+
"notes": "MongoDB where clause bypass",
|
|
216
|
+
"category": "Auth"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"id": "AUTH-NOSQL-005",
|
|
220
|
+
"payload": "true, $where: '1 == 1'",
|
|
221
|
+
"tags": ["nosql", "mongodb", "where"],
|
|
222
|
+
"expected_block": true,
|
|
223
|
+
"severity_hint": "Critical",
|
|
224
|
+
"notes": "MongoDB where injection",
|
|
225
|
+
"category": "Auth"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"id": "AUTH-NOSQL-006",
|
|
229
|
+
"payload": "', $or: [ {}, { 'a':'a' } ], $comment:'successful MongoDB injection'",
|
|
230
|
+
"tags": ["nosql", "mongodb", "or"],
|
|
231
|
+
"expected_block": true,
|
|
232
|
+
"severity_hint": "Critical",
|
|
233
|
+
"notes": "MongoDB or injection",
|
|
234
|
+
"category": "Auth"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"id": "AUTH-NOSQL-007",
|
|
238
|
+
"payload": "' || 'a'=='a",
|
|
239
|
+
"tags": ["nosql", "login-bypass"],
|
|
240
|
+
"expected_block": true,
|
|
241
|
+
"severity_hint": "Critical",
|
|
242
|
+
"notes": "NoSQL OR bypass",
|
|
243
|
+
"category": "Auth"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"id": "AUTH-NOSQL-008",
|
|
247
|
+
"payload": "' && this.password.match(/.*/)//+%00",
|
|
248
|
+
"tags": ["nosql", "mongodb", "regex-match"],
|
|
249
|
+
"expected_block": true,
|
|
250
|
+
"severity_hint": "Critical",
|
|
251
|
+
"notes": "MongoDB password regex bypass",
|
|
252
|
+
"category": "Auth"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": "AUTH-LDAP-001",
|
|
256
|
+
"payload": "*)(uid=*))(|(uid=*",
|
|
257
|
+
"tags": ["ldap", "injection", "login-bypass"],
|
|
258
|
+
"expected_block": true,
|
|
259
|
+
"severity_hint": "Critical",
|
|
260
|
+
"notes": "LDAP injection login bypass",
|
|
261
|
+
"category": "Auth"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"id": "AUTH-LDAP-002",
|
|
265
|
+
"payload": "*(|(objectclass=*))",
|
|
266
|
+
"tags": ["ldap", "injection", "wildcard"],
|
|
267
|
+
"expected_block": true,
|
|
268
|
+
"severity_hint": "Critical",
|
|
269
|
+
"notes": "LDAP wildcard filter bypass",
|
|
270
|
+
"category": "Auth"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"id": "AUTH-LDAP-003",
|
|
274
|
+
"payload": "*(|(uid=*))",
|
|
275
|
+
"tags": ["ldap", "injection"],
|
|
276
|
+
"expected_block": true,
|
|
277
|
+
"severity_hint": "Critical",
|
|
278
|
+
"notes": "LDAP UID wildcard",
|
|
279
|
+
"category": "Auth"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"id": "AUTH-LDAP-004",
|
|
283
|
+
"payload": "*)(objectClass=*",
|
|
284
|
+
"tags": ["ldap", "injection", "objectclass"],
|
|
285
|
+
"expected_block": true,
|
|
286
|
+
"severity_hint": "Critical",
|
|
287
|
+
"notes": "LDAP objectClass injection",
|
|
288
|
+
"category": "Auth"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"id": "AUTH-LDAP-005",
|
|
292
|
+
"payload": "x*)(&(|(objectclass=",
|
|
293
|
+
"tags": ["ldap", "injection", "complex"],
|
|
294
|
+
"expected_block": true,
|
|
295
|
+
"severity_hint": "Critical",
|
|
296
|
+
"notes": "Complex LDAP injection",
|
|
297
|
+
"category": "Auth"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"id": "AUTH-XPATH-001",
|
|
301
|
+
"payload": "' or '1'='1",
|
|
302
|
+
"tags": ["xpath", "injection", "login-bypass"],
|
|
303
|
+
"expected_block": true,
|
|
304
|
+
"severity_hint": "Critical",
|
|
305
|
+
"notes": "XPath injection login bypass",
|
|
306
|
+
"category": "Auth"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"id": "AUTH-XPATH-002",
|
|
310
|
+
"payload": "' or ''='",
|
|
311
|
+
"tags": ["xpath", "injection"],
|
|
312
|
+
"expected_block": true,
|
|
313
|
+
"severity_hint": "Critical",
|
|
314
|
+
"notes": "XPath empty string bypass",
|
|
315
|
+
"category": "Auth"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"id": "AUTH-XPATH-003",
|
|
319
|
+
"payload": "x' or name()='username' or 'x'='y",
|
|
320
|
+
"tags": ["xpath", "injection", "name-function"],
|
|
321
|
+
"expected_block": true,
|
|
322
|
+
"severity_hint": "Critical",
|
|
323
|
+
"notes": "XPath name function bypass",
|
|
324
|
+
"category": "Auth"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"id": "AUTH-XPATH-004",
|
|
328
|
+
"payload": "//*",
|
|
329
|
+
"tags": ["xpath", "injection", "wildcard"],
|
|
330
|
+
"expected_block": true,
|
|
331
|
+
"severity_hint": "High",
|
|
332
|
+
"notes": "XPath wildcard select all",
|
|
333
|
+
"category": "Auth"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"id": "AUTH-XPATH-005",
|
|
337
|
+
"payload": "count(/child::node())",
|
|
338
|
+
"tags": ["xpath", "injection", "function"],
|
|
339
|
+
"expected_block": true,
|
|
340
|
+
"severity_hint": "High",
|
|
341
|
+
"notes": "XPath count function injection",
|
|
342
|
+
"category": "Auth"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"id": "AUTH-ENC-001",
|
|
346
|
+
"payload": "%27%20or%201%3D1--",
|
|
347
|
+
"tags": ["encoded", "login-bypass", "url-encoded"],
|
|
348
|
+
"expected_block": true,
|
|
349
|
+
"severity_hint": "Critical",
|
|
350
|
+
"notes": "URL encoded SQL bypass",
|
|
351
|
+
"category": "Auth"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"id": "AUTH-ENC-002",
|
|
355
|
+
"payload": "%27%20or%20%271%27%3D%271",
|
|
356
|
+
"tags": ["encoded", "login-bypass"],
|
|
357
|
+
"expected_block": true,
|
|
358
|
+
"severity_hint": "Critical",
|
|
359
|
+
"notes": "Fully URL encoded bypass",
|
|
360
|
+
"category": "Auth"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"id": "AUTH-ENC-003",
|
|
364
|
+
"payload": "%bf' Or 1=1 -- 2",
|
|
365
|
+
"tags": ["encoded", "gbk", "multibyte"],
|
|
366
|
+
"expected_block": true,
|
|
367
|
+
"severity_hint": "Critical",
|
|
368
|
+
"notes": "GBK multibyte encoding bypass",
|
|
369
|
+
"category": "Auth"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"id": "AUTH-ENC-004",
|
|
373
|
+
"payload": "%bf%27 Or 1=1 -- 2",
|
|
374
|
+
"tags": ["encoded", "gbk"],
|
|
375
|
+
"expected_block": true,
|
|
376
|
+
"severity_hint": "Critical",
|
|
377
|
+
"notes": "GBK quote encoding bypass",
|
|
378
|
+
"category": "Auth"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"id": "AUTH-ENC-005",
|
|
382
|
+
"payload": "%c0%27 Or 1=1 -- 2",
|
|
383
|
+
"tags": ["encoded", "utf8", "overlong"],
|
|
384
|
+
"expected_block": true,
|
|
385
|
+
"severity_hint": "Critical",
|
|
386
|
+
"notes": "UTF-8 overlong encoding bypass",
|
|
387
|
+
"category": "Auth"
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"id": "AUTH-ENUM-001",
|
|
391
|
+
"payload": "admin",
|
|
392
|
+
"tags": ["enumeration", "username", "common"],
|
|
393
|
+
"expected_block": false,
|
|
394
|
+
"severity_hint": "Low",
|
|
395
|
+
"notes": "Common admin username",
|
|
396
|
+
"category": "Auth"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"id": "AUTH-ENUM-002",
|
|
400
|
+
"payload": "administrator",
|
|
401
|
+
"tags": ["enumeration", "username", "common"],
|
|
402
|
+
"expected_block": false,
|
|
403
|
+
"severity_hint": "Low",
|
|
404
|
+
"notes": "Administrator username",
|
|
405
|
+
"category": "Auth"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"id": "AUTH-ENUM-003",
|
|
409
|
+
"payload": "root",
|
|
410
|
+
"tags": ["enumeration", "username", "common"],
|
|
411
|
+
"expected_block": false,
|
|
412
|
+
"severity_hint": "Low",
|
|
413
|
+
"notes": "Root username",
|
|
414
|
+
"category": "Auth"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"id": "AUTH-ENUM-004",
|
|
418
|
+
"payload": "test",
|
|
419
|
+
"tags": ["enumeration", "username", "common"],
|
|
420
|
+
"expected_block": false,
|
|
421
|
+
"severity_hint": "Low",
|
|
422
|
+
"notes": "Test username",
|
|
423
|
+
"category": "Auth"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"id": "AUTH-ENUM-005",
|
|
427
|
+
"payload": "guest",
|
|
428
|
+
"tags": ["enumeration", "username", "common"],
|
|
429
|
+
"expected_block": false,
|
|
430
|
+
"severity_hint": "Low",
|
|
431
|
+
"notes": "Guest username",
|
|
432
|
+
"category": "Auth"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"id": "AUTH-DEFAULT-001",
|
|
436
|
+
"payload": "admin:admin",
|
|
437
|
+
"tags": ["default-creds", "admin"],
|
|
438
|
+
"expected_block": false,
|
|
439
|
+
"severity_hint": "Critical",
|
|
440
|
+
"notes": "Default admin credentials",
|
|
441
|
+
"category": "Auth"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"id": "AUTH-DEFAULT-002",
|
|
445
|
+
"payload": "admin:password",
|
|
446
|
+
"tags": ["default-creds", "admin"],
|
|
447
|
+
"expected_block": false,
|
|
448
|
+
"severity_hint": "Critical",
|
|
449
|
+
"notes": "Common admin password",
|
|
450
|
+
"category": "Auth"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"id": "AUTH-DEFAULT-003",
|
|
454
|
+
"payload": "root:root",
|
|
455
|
+
"tags": ["default-creds", "root"],
|
|
456
|
+
"expected_block": false,
|
|
457
|
+
"severity_hint": "Critical",
|
|
458
|
+
"notes": "Default root credentials",
|
|
459
|
+
"category": "Auth"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"id": "AUTH-DEFAULT-004",
|
|
463
|
+
"payload": "admin:123456",
|
|
464
|
+
"tags": ["default-creds", "weak"],
|
|
465
|
+
"expected_block": false,
|
|
466
|
+
"severity_hint": "Critical",
|
|
467
|
+
"notes": "Common weak password",
|
|
468
|
+
"category": "Auth"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"id": "AUTH-DEFAULT-005",
|
|
472
|
+
"payload": "user:user",
|
|
473
|
+
"tags": ["default-creds", "user"],
|
|
474
|
+
"expected_block": false,
|
|
475
|
+
"severity_hint": "High",
|
|
476
|
+
"notes": "Default user credentials",
|
|
477
|
+
"category": "Auth"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"id": "AUTH-MAGIC-001",
|
|
481
|
+
"payload": "ffifdyop",
|
|
482
|
+
"tags": ["magic-hash", "md5", "php"],
|
|
483
|
+
"expected_block": false,
|
|
484
|
+
"severity_hint": "Critical",
|
|
485
|
+
"notes": "MD5 magic hash (0e...) bypass",
|
|
486
|
+
"category": "Auth"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"id": "AUTH-MAGIC-002",
|
|
490
|
+
"payload": "240610708",
|
|
491
|
+
"tags": ["magic-hash", "md5", "php"],
|
|
492
|
+
"expected_block": false,
|
|
493
|
+
"severity_hint": "High",
|
|
494
|
+
"notes": "MD5 hash equals 0e462097431906509019562988736854",
|
|
495
|
+
"category": "Auth"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"id": "AUTH-TYPE-001",
|
|
499
|
+
"payload": "password[]=",
|
|
500
|
+
"tags": ["type-juggling", "php", "array"],
|
|
501
|
+
"expected_block": true,
|
|
502
|
+
"severity_hint": "High",
|
|
503
|
+
"notes": "PHP array type juggling",
|
|
504
|
+
"category": "Auth"
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"id": "AUTH-TYPE-002",
|
|
508
|
+
"payload": "password[0]=x",
|
|
509
|
+
"tags": ["type-juggling", "php", "array"],
|
|
510
|
+
"expected_block": true,
|
|
511
|
+
"severity_hint": "High",
|
|
512
|
+
"notes": "PHP array index injection",
|
|
513
|
+
"category": "Auth"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"id": "AUTH-TYPE-003",
|
|
517
|
+
"payload": "{\"password\": true}",
|
|
518
|
+
"tags": ["type-juggling", "json", "boolean"],
|
|
519
|
+
"expected_block": false,
|
|
520
|
+
"severity_hint": "High",
|
|
521
|
+
"notes": "JSON boolean type juggling",
|
|
522
|
+
"category": "Auth"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"id": "AUTH-TYPE-004",
|
|
526
|
+
"payload": "{\"password\": 0}",
|
|
527
|
+
"tags": ["type-juggling", "json", "number"],
|
|
528
|
+
"expected_block": false,
|
|
529
|
+
"severity_hint": "High",
|
|
530
|
+
"notes": "JSON number type juggling",
|
|
531
|
+
"category": "Auth"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"id": "AUTH-NULL-001",
|
|
535
|
+
"payload": "admin\\x00",
|
|
536
|
+
"tags": ["null-byte", "truncation"],
|
|
537
|
+
"expected_block": true,
|
|
538
|
+
"severity_hint": "High",
|
|
539
|
+
"notes": "Null byte username truncation",
|
|
540
|
+
"category": "Auth"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"id": "AUTH-NULL-002",
|
|
544
|
+
"payload": "admin%00",
|
|
545
|
+
"tags": ["null-byte", "encoded"],
|
|
546
|
+
"expected_block": true,
|
|
547
|
+
"severity_hint": "High",
|
|
548
|
+
"notes": "URL encoded null byte",
|
|
549
|
+
"category": "Auth"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"id": "AUTH-NULL-003",
|
|
553
|
+
"payload": "admin\\0",
|
|
554
|
+
"tags": ["null-byte", "escape"],
|
|
555
|
+
"expected_block": true,
|
|
556
|
+
"severity_hint": "High",
|
|
557
|
+
"notes": "Escaped null byte",
|
|
558
|
+
"category": "Auth"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"id": "AUTH-UNICODE-001",
|
|
562
|
+
"payload": "ąďmín",
|
|
563
|
+
"tags": ["unicode", "normalization", "admin"],
|
|
564
|
+
"expected_block": false,
|
|
565
|
+
"severity_hint": "High",
|
|
566
|
+
"notes": "Unicode lookalike admin",
|
|
567
|
+
"category": "Auth"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"id": "AUTH-UNICODE-002",
|
|
571
|
+
"payload": "ⒶⒹⓂⒾⓃ",
|
|
572
|
+
"tags": ["unicode", "circled", "admin"],
|
|
573
|
+
"expected_block": false,
|
|
574
|
+
"severity_hint": "High",
|
|
575
|
+
"notes": "Circled letter admin",
|
|
576
|
+
"category": "Auth"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"id": "AUTH-CASE-001",
|
|
580
|
+
"payload": "ADMIN",
|
|
581
|
+
"tags": ["case", "uppercase"],
|
|
582
|
+
"expected_block": false,
|
|
583
|
+
"severity_hint": "Low",
|
|
584
|
+
"notes": "Uppercase admin attempt",
|
|
585
|
+
"category": "Auth"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"id": "AUTH-CASE-002",
|
|
589
|
+
"payload": "Admin",
|
|
590
|
+
"tags": ["case", "mixed"],
|
|
591
|
+
"expected_block": false,
|
|
592
|
+
"severity_hint": "Low",
|
|
593
|
+
"notes": "Mixed case admin",
|
|
594
|
+
"category": "Auth"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"id": "AUTH-SPACE-001",
|
|
598
|
+
"payload": "admin ",
|
|
599
|
+
"tags": ["whitespace", "trailing"],
|
|
600
|
+
"expected_block": false,
|
|
601
|
+
"severity_hint": "Medium",
|
|
602
|
+
"notes": "Trailing space bypass",
|
|
603
|
+
"category": "Auth"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"id": "AUTH-SPACE-002",
|
|
607
|
+
"payload": " admin",
|
|
608
|
+
"tags": ["whitespace", "leading"],
|
|
609
|
+
"expected_block": false,
|
|
610
|
+
"severity_hint": "Medium",
|
|
611
|
+
"notes": "Leading space bypass",
|
|
612
|
+
"category": "Auth"
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"id": "AUTH-SPACE-003",
|
|
616
|
+
"payload": "admin\\t",
|
|
617
|
+
"tags": ["whitespace", "tab"],
|
|
618
|
+
"expected_block": false,
|
|
619
|
+
"severity_hint": "Medium",
|
|
620
|
+
"notes": "Tab character bypass",
|
|
621
|
+
"category": "Auth"
|
|
622
|
+
}
|
|
623
|
+
]
|