@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.
Files changed (141) hide show
  1. package/LICENSE +80 -0
  2. package/LICENSE-COMMUNITY +28 -0
  3. package/README.md +121 -0
  4. package/bin/cli.js +152 -0
  5. package/package.json +52 -0
  6. package/payloads/community/README.md +45 -0
  7. package/payloads/community/ai/ml-poisoning.json +173 -0
  8. package/payloads/community/ai/prompt-injection.json +247 -0
  9. package/payloads/community/ai/workflow-abuse.json +222 -0
  10. package/payloads/community/auth/jwt.json +855 -0
  11. package/payloads/community/auth/login-bypass.json +623 -0
  12. package/payloads/community/auth/mfa.json +402 -0
  13. package/payloads/community/auth/oauth.json +421 -0
  14. package/payloads/community/auth/open-redirect.json +1028 -0
  15. package/payloads/community/auth/session.json +404 -0
  16. package/payloads/community/cache/deception.json +402 -0
  17. package/payloads/community/cache/poisoning.json +403 -0
  18. package/payloads/community/deserialization/gadget.json +375 -0
  19. package/payloads/community/deserialization/prototype.json +370 -0
  20. package/payloads/community/fuzz/content-type.json +397 -0
  21. package/payloads/community/fuzz/headers.json +401 -0
  22. package/payloads/community/fuzz/methods.json +397 -0
  23. package/payloads/community/fuzz/obfuscation.json +362 -0
  24. package/payloads/community/fuzz/special-chars.json +740 -0
  25. package/payloads/community/fuzz/waf-bypass.json +452 -0
  26. package/payloads/community/graphql/batching-abuse.json +271 -0
  27. package/payloads/community/graphql/depth-limit.json +271 -0
  28. package/payloads/community/graphql/introspection.json +267 -0
  29. package/payloads/community/injection/crlf.json +569 -0
  30. package/payloads/community/injection/ldap.json +357 -0
  31. package/payloads/community/injection/nosqli.json +529 -0
  32. package/payloads/community/injection/oscmd.json +662 -0
  33. package/payloads/community/injection/rce-polyglots.json +452 -0
  34. package/payloads/community/injection/sqli.json +681 -0
  35. package/payloads/community/injection/ssti.json +584 -0
  36. package/payloads/community/injection/upload-attacks.json +632 -0
  37. package/payloads/community/injection/xpath.json +357 -0
  38. package/payloads/community/injection/xxe.json +716 -0
  39. package/payloads/community/logic/forced-browsing.json +405 -0
  40. package/payloads/community/logic/idor.json +1026 -0
  41. package/payloads/community/logic/privilege.json +337 -0
  42. package/payloads/community/media/exif-injection.json +225 -0
  43. package/payloads/community/media/metadata-poison.json +239 -0
  44. package/payloads/community/protocol/http-smuggling.json +798 -0
  45. package/payloads/community/protocol/http2-attacks.json +382 -0
  46. package/payloads/community/protocol/websocket-abuse.json +375 -0
  47. package/payloads/community/rate-limit/burst-simulation.json +286 -0
  48. package/payloads/community/rate-limit/bypass-attempts.json +326 -0
  49. package/payloads/community/rate-limit/zone-tests.json +332 -0
  50. package/payloads/community/services/authentik.json +415 -0
  51. package/payloads/community/services/immich.json +423 -0
  52. package/payloads/community/services/n8n.json +366 -0
  53. package/payloads/community/sqli-basic.json +182 -0
  54. package/payloads/community/ssrf/cloud-metadata.json +999 -0
  55. package/payloads/community/ssrf/dns-rebinding.json +503 -0
  56. package/payloads/community/ssrf/internal-networks.json +627 -0
  57. package/payloads/community/ssrf/protocol-smuggling.json +350 -0
  58. package/payloads/community/ssti/multi-language-templates.json +191 -0
  59. package/payloads/community/ssti/python-templates.json +200 -0
  60. package/payloads/community/traversal/basic.json +675 -0
  61. package/payloads/community/traversal/cloud-credentials.json +107 -0
  62. package/payloads/community/traversal/config-files.json +193 -0
  63. package/payloads/community/traversal/encoding.json +558 -0
  64. package/payloads/community/traversal/null-byte.json +105 -0
  65. package/payloads/community/traversal/symlink.json +93 -0
  66. package/payloads/community/traversal/unicode.json +134 -0
  67. package/payloads/community/traversal/unix-advanced.json +195 -0
  68. package/payloads/community/traversal/windows-advanced.json +195 -0
  69. package/payloads/community/waf-bypass/cloudflare-bypass.json +102 -0
  70. package/payloads/community/waf-bypass/encoding-bypass.json +120 -0
  71. package/payloads/community/waf-bypass/evasion-techniques.json +164 -0
  72. package/payloads/community/waf-bypass/hpp-bypass.json +92 -0
  73. package/payloads/community/waf-bypass/modsecurity-crs.json +220 -0
  74. package/payloads/community/waf-bypass/protocol-attacks.json +101 -0
  75. package/payloads/community/waf-bypass/sqlmap-tamper.json +252 -0
  76. package/payloads/community/waf-bypass/unicode-charset.json +152 -0
  77. package/payloads/community/waf-bypass/vendor-bypasses.json +72 -0
  78. package/payloads/community/waf-validation/README.md +172 -0
  79. package/payloads/community/waf-validation/bypass-techniques.json +272 -0
  80. package/payloads/community/waf-validation/custom-rules.json +952 -0
  81. package/payloads/community/waf-validation/evasion-techniques.json +272 -0
  82. package/payloads/community/waf-validation/modsecurity-core.json +151 -0
  83. package/payloads/community/waf-validation/owasp-top10.json +236 -0
  84. package/payloads/community/waf-validation/regression-tests.json +227 -0
  85. package/payloads/community/xss/csp-bypass.json +431 -0
  86. package/payloads/community/xss/dom.json +389 -0
  87. package/payloads/community/xss/filter-bypass.json +1242 -0
  88. package/payloads/community/xss/mutation.json +263 -0
  89. package/payloads/community/xss/polyglots.json +371 -0
  90. package/payloads/community/xss/reflected.json +187 -0
  91. package/payloads/community/xss/stored.json +330 -0
  92. package/payloads/crlf-injection.json +182 -0
  93. package/payloads/ids-map.json +155 -0
  94. package/payloads/ldap-injection.json +182 -0
  95. package/payloads/nosql-injection.json +227 -0
  96. package/payloads/prototype-pollution.json +182 -0
  97. package/payloads/request-smuggling.json +182 -0
  98. package/payloads/version.json +28 -0
  99. package/payloads/xss-advanced.json +227 -0
  100. package/templates/README.md +221 -0
  101. package/templates/nuclei/http/waf-bypass/crlf-bypass.yaml +146 -0
  102. package/templates/nuclei/http/waf-bypass/lfi-bypass.yaml +152 -0
  103. package/templates/nuclei/http/waf-bypass/nosqli-bypass.yaml +166 -0
  104. package/templates/nuclei/http/waf-bypass/rce-bypass.yaml +171 -0
  105. package/templates/nuclei/http/waf-bypass/sqli-basic.yaml +142 -0
  106. package/templates/nuclei/http/waf-bypass/sqli-evasion.yaml +192 -0
  107. package/templates/nuclei/http/waf-bypass/ssrf-bypass.yaml +130 -0
  108. package/templates/nuclei/http/waf-bypass/ssti-bypass.yaml +147 -0
  109. package/templates/nuclei/http/waf-bypass/xss-basic.yaml +163 -0
  110. package/templates/nuclei/http/waf-bypass/xss-evasion.yaml +217 -0
  111. package/templates/nuclei/http/waf-bypass/xxe-bypass.yaml +204 -0
  112. package/templates/nuclei/http/waf-detection/akamai-detect.yaml +105 -0
  113. package/templates/nuclei/http/waf-detection/aws-waf-detect.yaml +115 -0
  114. package/templates/nuclei/http/waf-detection/azure-waf-detect.yaml +114 -0
  115. package/templates/nuclei/http/waf-detection/cloudflare-detect.yaml +121 -0
  116. package/templates/nuclei/http/waf-detection/modsecurity-detect.yaml +129 -0
  117. package/templates/nuclei/workflows/waf-assessment-workflow.yaml +71 -0
  118. package/templates/output/asff.tmpl +61 -0
  119. package/templates/output/csv.tmpl +4 -0
  120. package/templates/output/junit.tmpl +34 -0
  121. package/templates/output/markdown-report.tmpl +92 -0
  122. package/templates/output/slack-notification.tmpl +95 -0
  123. package/templates/output/text-summary.tmpl +56 -0
  124. package/templates/overrides/api-only.yaml +130 -0
  125. package/templates/overrides/crs-tuning.yaml +204 -0
  126. package/templates/overrides/false-positive-suppression.yaml +159 -0
  127. package/templates/policies/owasp-top10.yaml +152 -0
  128. package/templates/policies/pci-dss.yaml +124 -0
  129. package/templates/policies/permissive.yaml +40 -0
  130. package/templates/policies/standard.yaml +57 -0
  131. package/templates/policies/strict.yaml +72 -0
  132. package/templates/report-configs/compliance.yaml +173 -0
  133. package/templates/report-configs/dark.yaml +136 -0
  134. package/templates/report-configs/enterprise.yaml +175 -0
  135. package/templates/report-configs/minimal.yaml +84 -0
  136. package/templates/report-configs/print.yaml +139 -0
  137. package/templates/workflows/api-scan.yaml +132 -0
  138. package/templates/workflows/ci-gate.yaml +129 -0
  139. package/templates/workflows/full-scan.yaml +133 -0
  140. package/templates/workflows/quick-probe.yaml +80 -0
  141. package/templates/workflows/waf-detection.yaml +89 -0
@@ -0,0 +1,452 @@
1
+ [
2
+ {
3
+ "id": "WAF-BYPASS-001",
4
+ "payload": "s]E[l]E[c]T",
5
+ "tags": ["sqli", "bracket-bypass", "quick"],
6
+ "expected_block": true,
7
+ "severity_hint": "Critical",
8
+ "notes": "SQL SELECT with bracket obfuscation",
9
+ "category": "Bypass"
10
+ },
11
+ {
12
+ "id": "WAF-BYPASS-002",
13
+ "payload": "un/**/ion se/**/lect",
14
+ "tags": ["sqli", "comment-split", "quick"],
15
+ "expected_block": true,
16
+ "severity_hint": "Critical",
17
+ "notes": "SQL UNION SELECT comment splitting",
18
+ "category": "Bypass"
19
+ },
20
+ {
21
+ "id": "WAF-BYPASS-003",
22
+ "payload": "uni%6fn se%6cect",
23
+ "tags": ["sqli", "hex-bypass"],
24
+ "expected_block": true,
25
+ "severity_hint": "Critical",
26
+ "notes": "SQL with hex-encoded characters",
27
+ "category": "Bypass"
28
+ },
29
+ {
30
+ "id": "WAF-BYPASS-004",
31
+ "payload": "/*!50000union*//*!50000select*/",
32
+ "tags": ["sqli", "mysql-version", "quick"],
33
+ "expected_block": true,
34
+ "severity_hint": "Critical",
35
+ "notes": "MySQL version-specific comment bypass",
36
+ "category": "Bypass"
37
+ },
38
+ {
39
+ "id": "WAF-BYPASS-005",
40
+ "payload": "sel%00ect",
41
+ "tags": ["sqli", "null-byte"],
42
+ "expected_block": true,
43
+ "severity_hint": "Critical",
44
+ "notes": "SQL with null byte injection",
45
+ "category": "Bypass"
46
+ },
47
+ {
48
+ "id": "WAF-BYPASS-006",
49
+ "payload": "0'XOR(if(now()=sysdate(),sleep(5),0))XOR'Z",
50
+ "tags": ["sqli", "time-based", "xor"],
51
+ "expected_block": true,
52
+ "severity_hint": "Critical",
53
+ "notes": "Time-based blind SQLi with XOR",
54
+ "category": "Bypass"
55
+ },
56
+ {
57
+ "id": "WAF-BYPASS-007",
58
+ "payload": "'-IF(1=1,SLEEP(5),0)--",
59
+ "tags": ["sqli", "time-based", "if"],
60
+ "expected_block": true,
61
+ "severity_hint": "Critical",
62
+ "notes": "IF-based time SQLi",
63
+ "category": "Bypass"
64
+ },
65
+ {
66
+ "id": "WAF-BYPASS-008",
67
+ "payload": "1 AND (SELECT * FROM (SELECT(SLEEP(5)))a)",
68
+ "tags": ["sqli", "subquery", "sleep"],
69
+ "expected_block": true,
70
+ "severity_hint": "Critical",
71
+ "notes": "Subquery-wrapped SLEEP",
72
+ "category": "Bypass"
73
+ },
74
+ {
75
+ "id": "WAF-BYPASS-009",
76
+ "payload": "1' AND BENCHMARK(10000000,SHA1('test'))#",
77
+ "tags": ["sqli", "benchmark", "mysql"],
78
+ "expected_block": true,
79
+ "severity_hint": "Critical",
80
+ "notes": "MySQL BENCHMARK time-based",
81
+ "category": "Bypass"
82
+ },
83
+ {
84
+ "id": "WAF-BYPASS-010",
85
+ "payload": "<scr\\x00ipt>alert(1)</scr\\x00ipt>",
86
+ "tags": ["xss", "null-byte"],
87
+ "expected_block": true,
88
+ "severity_hint": "Critical",
89
+ "notes": "XSS with null bytes in tag",
90
+ "category": "Bypass"
91
+ },
92
+ {
93
+ "id": "WAF-BYPASS-011",
94
+ "payload": "<img src=x onerror=al\\u0065rt(1)>",
95
+ "tags": ["xss", "unicode-escape"],
96
+ "expected_block": true,
97
+ "severity_hint": "Critical",
98
+ "notes": "XSS with Unicode escape",
99
+ "category": "Bypass"
100
+ },
101
+ {
102
+ "id": "WAF-BYPASS-012",
103
+ "payload": "<svg/onload=alert(1)>",
104
+ "tags": ["xss", "no-space"],
105
+ "expected_block": true,
106
+ "severity_hint": "Critical",
107
+ "notes": "XSS without spaces",
108
+ "category": "Bypass"
109
+ },
110
+ {
111
+ "id": "WAF-BYPASS-013",
112
+ "payload": "<svg\\x0conload=alert(1)>",
113
+ "tags": ["xss", "form-feed"],
114
+ "expected_block": true,
115
+ "severity_hint": "Critical",
116
+ "notes": "XSS with form feed character",
117
+ "category": "Bypass"
118
+ },
119
+ {
120
+ "id": "WAF-BYPASS-014",
121
+ "payload": "java%0ascript:alert(1)",
122
+ "tags": ["xss", "newline-split"],
123
+ "expected_block": true,
124
+ "severity_hint": "Critical",
125
+ "notes": "JavaScript with newline split",
126
+ "category": "Bypass"
127
+ },
128
+ {
129
+ "id": "WAF-BYPASS-015",
130
+ "payload": "jav\tascript:alert(1)",
131
+ "tags": ["xss", "tab-split"],
132
+ "expected_block": true,
133
+ "severity_hint": "Critical",
134
+ "notes": "JavaScript with tab character",
135
+ "category": "Bypass"
136
+ },
137
+ {
138
+ "id": "WAF-BYPASS-016",
139
+ "payload": "\\x3cscript\\x3ealert(1)\\x3c/script\\x3e",
140
+ "tags": ["xss", "hex-escape"],
141
+ "expected_block": true,
142
+ "severity_hint": "Critical",
143
+ "notes": "XSS with hex escape sequences",
144
+ "category": "Bypass"
145
+ },
146
+ {
147
+ "id": "WAF-BYPASS-017",
148
+ "payload": "\\u003cscript\\u003ealert(1)\\u003c/script\\u003e",
149
+ "tags": ["xss", "unicode-escape"],
150
+ "expected_block": true,
151
+ "severity_hint": "Critical",
152
+ "notes": "XSS with Unicode escape sequences",
153
+ "category": "Bypass"
154
+ },
155
+ {
156
+ "id": "WAF-BYPASS-018",
157
+ "payload": "<img src=1 onerror\\x0b=alert(1)>",
158
+ "tags": ["xss", "vertical-tab"],
159
+ "expected_block": true,
160
+ "severity_hint": "Critical",
161
+ "notes": "XSS with vertical tab",
162
+ "category": "Bypass"
163
+ },
164
+ {
165
+ "id": "WAF-BYPASS-019",
166
+ "payload": "..%c0%af..%c0%af..%c0%afetc/passwd",
167
+ "tags": ["traversal", "overlong"],
168
+ "expected_block": true,
169
+ "severity_hint": "Critical",
170
+ "notes": "Path traversal UTF-8 overlong",
171
+ "category": "Bypass"
172
+ },
173
+ {
174
+ "id": "WAF-BYPASS-020",
175
+ "payload": "..%252f..%252f..%252fetc/passwd",
176
+ "tags": ["traversal", "double-encode"],
177
+ "expected_block": true,
178
+ "severity_hint": "Critical",
179
+ "notes": "Double URL-encoded traversal",
180
+ "category": "Bypass"
181
+ },
182
+ {
183
+ "id": "WAF-BYPASS-021",
184
+ "payload": "....//....//....//etc/passwd",
185
+ "tags": ["traversal", "double-slash"],
186
+ "expected_block": true,
187
+ "severity_hint": "Critical",
188
+ "notes": "Double dot double slash bypass",
189
+ "category": "Bypass"
190
+ },
191
+ {
192
+ "id": "WAF-BYPASS-022",
193
+ "payload": "..../\\/..../\\/etc/passwd",
194
+ "tags": ["traversal", "mixed-slash"],
195
+ "expected_block": true,
196
+ "severity_hint": "Critical",
197
+ "notes": "Mixed slash traversal",
198
+ "category": "Bypass"
199
+ },
200
+ {
201
+ "id": "WAF-BYPASS-023",
202
+ "payload": ";c$()at /etc/passwd",
203
+ "tags": ["rce", "variable-injection"],
204
+ "expected_block": true,
205
+ "severity_hint": "Critical",
206
+ "notes": "Command with empty variable",
207
+ "category": "Bypass"
208
+ },
209
+ {
210
+ "id": "WAF-BYPASS-024",
211
+ "payload": ";c''at /etc/passwd",
212
+ "tags": ["rce", "quote-bypass"],
213
+ "expected_block": true,
214
+ "severity_hint": "Critical",
215
+ "notes": "Command with empty quotes",
216
+ "category": "Bypass"
217
+ },
218
+ {
219
+ "id": "WAF-BYPASS-025",
220
+ "payload": ";c\"\"at /etc/passwd",
221
+ "tags": ["rce", "double-quote-bypass"],
222
+ "expected_block": true,
223
+ "severity_hint": "Critical",
224
+ "notes": "Command with empty double quotes",
225
+ "category": "Bypass"
226
+ },
227
+ {
228
+ "id": "WAF-BYPASS-026",
229
+ "payload": ";c\\at /etc/passwd",
230
+ "tags": ["rce", "backslash-bypass"],
231
+ "expected_block": true,
232
+ "severity_hint": "Critical",
233
+ "notes": "Command with backslash",
234
+ "category": "Bypass"
235
+ },
236
+ {
237
+ "id": "WAF-BYPASS-027",
238
+ "payload": "$'c\\x61t' /etc/passwd",
239
+ "tags": ["rce", "ansi-c-quote"],
240
+ "expected_block": true,
241
+ "severity_hint": "Critical",
242
+ "notes": "ANSI-C quoted hex escape",
243
+ "category": "Bypass"
244
+ },
245
+ {
246
+ "id": "WAF-BYPASS-028",
247
+ "payload": "Content-Type: application/x-www-form-urlencoded\\r\\nX-Injected: true",
248
+ "tags": ["header", "crlf"],
249
+ "expected_block": true,
250
+ "severity_hint": "High",
251
+ "notes": "CRLF header injection",
252
+ "category": "Bypass"
253
+ },
254
+ {
255
+ "id": "WAF-BYPASS-029",
256
+ "payload": "chunked\\r\\nTransfer-Encoding: chunked",
257
+ "tags": ["header", "smuggling"],
258
+ "expected_block": true,
259
+ "severity_hint": "Critical",
260
+ "notes": "HTTP smuggling header",
261
+ "category": "Bypass"
262
+ },
263
+ {
264
+ "id": "WAF-BYPASS-030",
265
+ "payload": " chunked",
266
+ "tags": ["header", "space-prefix"],
267
+ "expected_block": true,
268
+ "severity_hint": "High",
269
+ "notes": "Space-prefixed header value",
270
+ "category": "Bypass"
271
+ },
272
+ {
273
+ "id": "WAF-BYPASS-031",
274
+ "payload": "Transfer-Encoding:\\tchunked",
275
+ "tags": ["header", "tab-separator"],
276
+ "expected_block": true,
277
+ "severity_hint": "High",
278
+ "notes": "Tab-separated header value",
279
+ "category": "Bypass"
280
+ },
281
+ {
282
+ "id": "WAF-BYPASS-032",
283
+ "payload": "application/json\\x00text/html",
284
+ "tags": ["content-type", "null-byte"],
285
+ "expected_block": true,
286
+ "severity_hint": "High",
287
+ "notes": "Content-Type null byte truncation",
288
+ "category": "Bypass"
289
+ },
290
+ {
291
+ "id": "WAF-BYPASS-033",
292
+ "payload": "multipart/form-data; boundary=----;",
293
+ "tags": ["content-type", "boundary-trick"],
294
+ "expected_block": true,
295
+ "severity_hint": "Medium",
296
+ "notes": "Malformed multipart boundary",
297
+ "category": "Bypass"
298
+ },
299
+ {
300
+ "id": "WAF-BYPASS-034",
301
+ "payload": "%u003c%u0073%u0063%u0072%u0069%u0070%u0074%u003e",
302
+ "tags": ["xss", "iis-unicode"],
303
+ "expected_block": true,
304
+ "severity_hint": "Critical",
305
+ "notes": "IIS Unicode encoded XSS",
306
+ "category": "Bypass"
307
+ },
308
+ {
309
+ "id": "WAF-BYPASS-035",
310
+ "payload": "0xunion0x0xselect",
311
+ "tags": ["sqli", "hex-padding"],
312
+ "expected_block": true,
313
+ "severity_hint": "Critical",
314
+ "notes": "SQL with hex padding",
315
+ "category": "Bypass"
316
+ },
317
+ {
318
+ "id": "WAF-BYPASS-036",
319
+ "payload": "1e0union1e0select",
320
+ "tags": ["sqli", "scientific-notation"],
321
+ "expected_block": true,
322
+ "severity_hint": "Critical",
323
+ "notes": "SQL with scientific notation",
324
+ "category": "Bypass"
325
+ },
326
+ {
327
+ "id": "WAF-BYPASS-037",
328
+ "payload": "1.union.select",
329
+ "tags": ["sqli", "dot-bypass"],
330
+ "expected_block": true,
331
+ "severity_hint": "Critical",
332
+ "notes": "SQL with dot separators",
333
+ "category": "Bypass"
334
+ },
335
+ {
336
+ "id": "WAF-BYPASS-038",
337
+ "payload": "1%0aunion%0aselect",
338
+ "tags": ["sqli", "newline-bypass"],
339
+ "expected_block": true,
340
+ "severity_hint": "Critical",
341
+ "notes": "SQL with newline separators",
342
+ "category": "Bypass"
343
+ },
344
+ {
345
+ "id": "WAF-BYPASS-039",
346
+ "payload": "1%09union%09select",
347
+ "tags": ["sqli", "tab-bypass"],
348
+ "expected_block": true,
349
+ "severity_hint": "Critical",
350
+ "notes": "SQL with tab separators",
351
+ "category": "Bypass"
352
+ },
353
+ {
354
+ "id": "WAF-BYPASS-040",
355
+ "payload": "1%0bunion%0bselect",
356
+ "tags": ["sqli", "vtab-bypass"],
357
+ "expected_block": true,
358
+ "severity_hint": "Critical",
359
+ "notes": "SQL with vertical tab",
360
+ "category": "Bypass"
361
+ },
362
+ {
363
+ "id": "WAF-BYPASS-041",
364
+ "payload": "1%0cunion%0cselect",
365
+ "tags": ["sqli", "formfeed-bypass"],
366
+ "expected_block": true,
367
+ "severity_hint": "Critical",
368
+ "notes": "SQL with form feed",
369
+ "category": "Bypass"
370
+ },
371
+ {
372
+ "id": "WAF-BYPASS-042",
373
+ "payload": "1%0dunion%0dselect",
374
+ "tags": ["sqli", "cr-bypass"],
375
+ "expected_block": true,
376
+ "severity_hint": "Critical",
377
+ "notes": "SQL with carriage return",
378
+ "category": "Bypass"
379
+ },
380
+ {
381
+ "id": "WAF-BYPASS-043",
382
+ "payload": "1%a0union%a0select",
383
+ "tags": ["sqli", "nbsp-bypass"],
384
+ "expected_block": true,
385
+ "severity_hint": "Critical",
386
+ "notes": "SQL with non-breaking space",
387
+ "category": "Bypass"
388
+ },
389
+ {
390
+ "id": "WAF-BYPASS-044",
391
+ "payload": "'+or+'1",
392
+ "tags": ["sqli", "plus-bypass"],
393
+ "expected_block": true,
394
+ "severity_hint": "Critical",
395
+ "notes": "SQL with plus sign bypass",
396
+ "category": "Bypass"
397
+ },
398
+ {
399
+ "id": "WAF-BYPASS-045",
400
+ "payload": "\\' or 1=1--",
401
+ "tags": ["sqli", "backslash-escape"],
402
+ "expected_block": true,
403
+ "severity_hint": "Critical",
404
+ "notes": "SQL with backslash before quote",
405
+ "category": "Bypass"
406
+ },
407
+ {
408
+ "id": "WAF-BYPASS-046",
409
+ "payload": "' or ''='",
410
+ "tags": ["sqli", "double-quote-compare"],
411
+ "expected_block": true,
412
+ "severity_hint": "Critical",
413
+ "notes": "SQL empty string comparison",
414
+ "category": "Bypass"
415
+ },
416
+ {
417
+ "id": "WAF-BYPASS-047",
418
+ "payload": "'-'",
419
+ "tags": ["sqli", "minus-bypass"],
420
+ "expected_block": true,
421
+ "severity_hint": "High",
422
+ "notes": "SQL minus operator bypass",
423
+ "category": "Bypass"
424
+ },
425
+ {
426
+ "id": "WAF-BYPASS-048",
427
+ "payload": "'+''+'",
428
+ "tags": ["sqli", "concat-bypass"],
429
+ "expected_block": true,
430
+ "severity_hint": "High",
431
+ "notes": "SQL string concatenation bypass",
432
+ "category": "Bypass"
433
+ },
434
+ {
435
+ "id": "WAF-BYPASS-049",
436
+ "payload": "X-Originating-IP: 127.0.0.1",
437
+ "tags": ["header", "ip-spoof"],
438
+ "expected_block": true,
439
+ "severity_hint": "High",
440
+ "notes": "IP spoofing header",
441
+ "category": "Bypass"
442
+ },
443
+ {
444
+ "id": "WAF-BYPASS-050",
445
+ "payload": "X-Forwarded-For: 127.0.0.1",
446
+ "tags": ["header", "xff-spoof"],
447
+ "expected_block": false,
448
+ "severity_hint": "Medium",
449
+ "notes": "XFF header (may be legitimate)",
450
+ "category": "Bypass"
451
+ }
452
+ ]