@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,415 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "SVC-AUTK-001",
|
|
4
|
+
"payload": "/application/o/authorize/?client_id=test&redirect_uri=https://evil.com/callback&response_type=code",
|
|
5
|
+
"tags": ["oauth", "open-redirect", "quick", "critical"],
|
|
6
|
+
"expected_block": true,
|
|
7
|
+
"severity_hint": "Critical",
|
|
8
|
+
"notes": "OAuth open redirect to malicious callback URL",
|
|
9
|
+
"category": "Service-Specific",
|
|
10
|
+
"service": "authentik",
|
|
11
|
+
"endpoint": "/application/o/authorize/"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"id": "SVC-AUTK-002",
|
|
15
|
+
"payload": "/application/o/authorize/?client_id=test&redirect_uri=javascript:alert(document.cookie)&response_type=code",
|
|
16
|
+
"tags": ["oauth", "xss", "quick", "critical"],
|
|
17
|
+
"expected_block": true,
|
|
18
|
+
"severity_hint": "Critical",
|
|
19
|
+
"notes": "OAuth redirect with javascript: scheme (XSS)",
|
|
20
|
+
"category": "Service-Specific",
|
|
21
|
+
"service": "authentik",
|
|
22
|
+
"endpoint": "/application/o/authorize/"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "SVC-AUTK-003",
|
|
26
|
+
"payload": "/application/o/authorize/?client_id=test&redirect_uri=data:text/html,<script>alert(1)</script>&response_type=code",
|
|
27
|
+
"tags": ["oauth", "xss", "data-uri", "critical"],
|
|
28
|
+
"expected_block": true,
|
|
29
|
+
"severity_hint": "Critical",
|
|
30
|
+
"notes": "OAuth redirect with data: URI (XSS)",
|
|
31
|
+
"category": "Service-Specific",
|
|
32
|
+
"service": "authentik",
|
|
33
|
+
"endpoint": "/application/o/authorize/"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "SVC-AUTK-004",
|
|
37
|
+
"payload": "/application/o/authorize/?client_id=test&redirect_uri=http://localhost:8080@attacker.com&response_type=code",
|
|
38
|
+
"tags": ["oauth", "open-redirect", "url-parsing", "high"],
|
|
39
|
+
"expected_block": true,
|
|
40
|
+
"severity_hint": "High",
|
|
41
|
+
"notes": "OAuth redirect with URL parsing confusion (@)",
|
|
42
|
+
"category": "Service-Specific",
|
|
43
|
+
"service": "authentik",
|
|
44
|
+
"endpoint": "/application/o/authorize/"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": "SVC-AUTK-005",
|
|
48
|
+
"payload": "/application/o/authorize/?client_id=test&redirect_uri=https://auth.example.com.evil.com&response_type=code",
|
|
49
|
+
"tags": ["oauth", "open-redirect", "subdomain-takeover", "high"],
|
|
50
|
+
"expected_block": true,
|
|
51
|
+
"severity_hint": "High",
|
|
52
|
+
"notes": "OAuth redirect to lookalike domain (subdomain prefix)",
|
|
53
|
+
"category": "Service-Specific",
|
|
54
|
+
"service": "authentik",
|
|
55
|
+
"endpoint": "/application/o/authorize/"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"id": "SVC-AUTK-006",
|
|
59
|
+
"payload": "/source/saml/<slug>/acs/",
|
|
60
|
+
"method": "POST",
|
|
61
|
+
"body": "SAMLResponse=PD94bWwgdmVyc2lvbj0iMS4wIj8+PCFET0NUWVBFIGZvbyBbPCFFTlRJVFkgeHhlIFNZU1RFTSAiZmlsZTovLy9ldGMvcGFzc3dkIj5dPjxzYW1scDpSZXNwb25zZT4meHhlOzwvc2FtbHA6UmVzcG9uc2U+",
|
|
62
|
+
"tags": ["saml", "xxe", "quick", "critical"],
|
|
63
|
+
"expected_block": true,
|
|
64
|
+
"severity_hint": "Critical",
|
|
65
|
+
"notes": "SAML XXE attack attempting to read /etc/passwd",
|
|
66
|
+
"category": "Service-Specific",
|
|
67
|
+
"service": "authentik",
|
|
68
|
+
"endpoint": "/source/saml/<slug>/acs/"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"id": "SVC-AUTK-007",
|
|
72
|
+
"payload": "/source/saml/<slug>/acs/",
|
|
73
|
+
"method": "POST",
|
|
74
|
+
"body": "SAMLResponse=PHNhbWxwOlJlc3BvbnNlPjxzYW1sOkFzc2VydGlvbj48c2FtbDpBdHRyaWJ1dGVTdGF0ZW1lbnQ+PHNhbWw6QXR0cmlidXRlIE5hbWU9InJvbGUiPjxzYW1sOkF0dHJpYnV0ZVZhbHVlPmFkbWluPC9zYW1sOkF0dHJpYnV0ZVZhbHVlPjwvc2FtbDpBdHRyaWJ1dGU+PC9zYW1sOkF0dHJpYnV0ZVN0YXRlbWVudD48L3NhbWw6QXNzZXJ0aW9uPjwvc2FtbHA6UmVzcG9uc2U+",
|
|
75
|
+
"tags": ["saml", "injection", "privilege-escalation", "critical"],
|
|
76
|
+
"expected_block": true,
|
|
77
|
+
"severity_hint": "Critical",
|
|
78
|
+
"notes": "SAML attribute injection - injecting admin role",
|
|
79
|
+
"category": "Service-Specific",
|
|
80
|
+
"service": "authentik",
|
|
81
|
+
"endpoint": "/source/saml/<slug>/acs/"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "SVC-AUTK-008",
|
|
85
|
+
"payload": "/api/v3/core/users/",
|
|
86
|
+
"method": "POST",
|
|
87
|
+
"body": "{\"username\":\"attacker\",\"email\":\"test@test.com\",\"is_superuser\":true,\"is_staff\":true}",
|
|
88
|
+
"tags": ["api", "mass-assignment", "privilege-escalation", "critical"],
|
|
89
|
+
"expected_block": true,
|
|
90
|
+
"severity_hint": "Critical",
|
|
91
|
+
"notes": "User provisioning mass assignment - creating superuser",
|
|
92
|
+
"category": "Service-Specific",
|
|
93
|
+
"service": "authentik",
|
|
94
|
+
"endpoint": "/api/v3/core/users/"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"id": "SVC-AUTK-009",
|
|
98
|
+
"payload": "/api/v3/core/users/",
|
|
99
|
+
"method": "POST",
|
|
100
|
+
"body": "{\"username\":\"attacker2\",\"email\":\"test@test.com\",\"groups\":[\"administrators\",\"superusers\"]}",
|
|
101
|
+
"tags": ["api", "mass-assignment", "group-escalation", "critical"],
|
|
102
|
+
"expected_block": true,
|
|
103
|
+
"severity_hint": "Critical",
|
|
104
|
+
"notes": "User provisioning with privileged group assignment",
|
|
105
|
+
"category": "Service-Specific",
|
|
106
|
+
"service": "authentik",
|
|
107
|
+
"endpoint": "/api/v3/core/users/"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"id": "SVC-AUTK-010",
|
|
111
|
+
"payload": "/api/v3/core/users/",
|
|
112
|
+
"method": "POST",
|
|
113
|
+
"body": "{\"username\":\"attacker3\",\"email\":\"test@test.com\",\"permissions\":[\"*\"]}",
|
|
114
|
+
"tags": ["api", "mass-assignment", "wildcard-permission", "critical"],
|
|
115
|
+
"expected_block": true,
|
|
116
|
+
"severity_hint": "Critical",
|
|
117
|
+
"notes": "User provisioning with wildcard permissions",
|
|
118
|
+
"category": "Service-Specific",
|
|
119
|
+
"service": "authentik",
|
|
120
|
+
"endpoint": "/api/v3/core/users/"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "SVC-AUTK-011",
|
|
124
|
+
"payload": "/flows/executor/test/?query={{%20'7'*7%20}}",
|
|
125
|
+
"tags": ["ssti", "template-injection", "quick", "high"],
|
|
126
|
+
"expected_block": true,
|
|
127
|
+
"severity_hint": "High",
|
|
128
|
+
"notes": "Flow executor template injection (Jinja2)",
|
|
129
|
+
"category": "Service-Specific",
|
|
130
|
+
"service": "authentik",
|
|
131
|
+
"endpoint": "/flows/executor/"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"id": "SVC-AUTK-012",
|
|
135
|
+
"payload": "/flows/executor/test/?query={{config.items()}}",
|
|
136
|
+
"tags": ["ssti", "info-disclosure", "high"],
|
|
137
|
+
"expected_block": true,
|
|
138
|
+
"severity_hint": "High",
|
|
139
|
+
"notes": "Flow executor attempting to leak config via template",
|
|
140
|
+
"category": "Service-Specific",
|
|
141
|
+
"service": "authentik",
|
|
142
|
+
"endpoint": "/flows/executor/"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"id": "SVC-AUTK-013",
|
|
146
|
+
"payload": "/flows/executor/test/?query={{''.__class__.__mro__[1].__subclasses__()}}",
|
|
147
|
+
"tags": ["ssti", "rce", "critical"],
|
|
148
|
+
"expected_block": true,
|
|
149
|
+
"severity_hint": "Critical",
|
|
150
|
+
"notes": "Flow executor Python object traversal for RCE",
|
|
151
|
+
"category": "Service-Specific",
|
|
152
|
+
"service": "authentik",
|
|
153
|
+
"endpoint": "/flows/executor/"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "SVC-AUTK-014",
|
|
157
|
+
"payload": "/flows/executor/test/?query=${7*7}",
|
|
158
|
+
"tags": ["ssti", "el-injection", "high"],
|
|
159
|
+
"expected_block": true,
|
|
160
|
+
"severity_hint": "High",
|
|
161
|
+
"notes": "Flow executor EL expression injection",
|
|
162
|
+
"category": "Service-Specific",
|
|
163
|
+
"service": "authentik",
|
|
164
|
+
"endpoint": "/flows/executor/"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"id": "SVC-AUTK-015",
|
|
168
|
+
"payload": "/flows/executor/test/?query=<%=7*7%>",
|
|
169
|
+
"tags": ["ssti", "erb-injection", "high"],
|
|
170
|
+
"expected_block": true,
|
|
171
|
+
"severity_hint": "High",
|
|
172
|
+
"notes": "Flow executor ERB template injection",
|
|
173
|
+
"category": "Service-Specific",
|
|
174
|
+
"service": "authentik",
|
|
175
|
+
"endpoint": "/flows/executor/"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"id": "SVC-AUTK-016",
|
|
179
|
+
"payload": "/application/o/token/",
|
|
180
|
+
"method": "POST",
|
|
181
|
+
"body": "grant_type=password&username=admin&password=admin",
|
|
182
|
+
"tags": ["oauth", "token", "brute-force", "high"],
|
|
183
|
+
"expected_block": true,
|
|
184
|
+
"severity_hint": "High",
|
|
185
|
+
"notes": "Token endpoint password grant type (credential stuffing)",
|
|
186
|
+
"category": "Service-Specific",
|
|
187
|
+
"service": "authentik",
|
|
188
|
+
"endpoint": "/application/o/token/"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"id": "SVC-AUTK-017",
|
|
192
|
+
"payload": "/application/o/token/",
|
|
193
|
+
"method": "POST",
|
|
194
|
+
"body": "grant_type=client_credentials&client_id=test&client_secret=",
|
|
195
|
+
"tags": ["oauth", "token", "empty-secret", "high"],
|
|
196
|
+
"expected_block": true,
|
|
197
|
+
"severity_hint": "High",
|
|
198
|
+
"notes": "Token endpoint with empty client secret",
|
|
199
|
+
"category": "Service-Specific",
|
|
200
|
+
"service": "authentik",
|
|
201
|
+
"endpoint": "/application/o/token/"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"id": "SVC-AUTK-018",
|
|
205
|
+
"payload": "/application/o/token/",
|
|
206
|
+
"method": "POST",
|
|
207
|
+
"body": "grant_type=refresh_token&refresh_token=../../../etc/passwd",
|
|
208
|
+
"tags": ["oauth", "token", "traversal", "critical"],
|
|
209
|
+
"expected_block": true,
|
|
210
|
+
"severity_hint": "Critical",
|
|
211
|
+
"notes": "Token endpoint with path traversal in refresh token",
|
|
212
|
+
"category": "Service-Specific",
|
|
213
|
+
"service": "authentik",
|
|
214
|
+
"endpoint": "/application/o/token/"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"id": "SVC-AUTK-019",
|
|
218
|
+
"payload": "/application/o/token/",
|
|
219
|
+
"method": "POST",
|
|
220
|
+
"body": "grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer&assertion=eyJ0eXAiOiJKV1QiLCJhbGciOiJub25lIn0.eyJpc3MiOiJhdHRhY2tlciJ9.",
|
|
221
|
+
"tags": ["oauth", "token", "jwt-bearer", "algorithm-confusion", "critical"],
|
|
222
|
+
"expected_block": true,
|
|
223
|
+
"severity_hint": "Critical",
|
|
224
|
+
"notes": "JWT bearer grant with 'none' algorithm",
|
|
225
|
+
"category": "Service-Specific",
|
|
226
|
+
"service": "authentik",
|
|
227
|
+
"endpoint": "/application/o/token/"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"id": "SVC-AUTK-020",
|
|
231
|
+
"payload": "/if/flow/recovery/?token=admin",
|
|
232
|
+
"tags": ["account-takeover", "token-prediction", "critical"],
|
|
233
|
+
"expected_block": true,
|
|
234
|
+
"severity_hint": "Critical",
|
|
235
|
+
"notes": "Password reset with predictable token",
|
|
236
|
+
"category": "Service-Specific",
|
|
237
|
+
"service": "authentik",
|
|
238
|
+
"endpoint": "/if/flow/recovery/"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "SVC-AUTK-021",
|
|
242
|
+
"payload": "/if/flow/recovery/?token=aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa",
|
|
243
|
+
"tags": ["account-takeover", "token-enumeration", "high"],
|
|
244
|
+
"expected_block": true,
|
|
245
|
+
"severity_hint": "High",
|
|
246
|
+
"notes": "Password reset with sequential UUID enumeration",
|
|
247
|
+
"category": "Service-Specific",
|
|
248
|
+
"service": "authentik",
|
|
249
|
+
"endpoint": "/if/flow/recovery/"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"id": "SVC-AUTK-022",
|
|
253
|
+
"payload": "/if/flow/recovery/?token[]=multi&token[]=value",
|
|
254
|
+
"tags": ["account-takeover", "array-injection", "high"],
|
|
255
|
+
"expected_block": true,
|
|
256
|
+
"severity_hint": "High",
|
|
257
|
+
"notes": "Password reset with array parameter pollution",
|
|
258
|
+
"category": "Service-Specific",
|
|
259
|
+
"service": "authentik",
|
|
260
|
+
"endpoint": "/if/flow/recovery/"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"id": "SVC-AUTK-023",
|
|
264
|
+
"payload": "/if/flow/recovery/?token=../admin",
|
|
265
|
+
"tags": ["account-takeover", "traversal", "critical"],
|
|
266
|
+
"expected_block": true,
|
|
267
|
+
"severity_hint": "Critical",
|
|
268
|
+
"notes": "Password reset with path traversal in token",
|
|
269
|
+
"category": "Service-Specific",
|
|
270
|
+
"service": "authentik",
|
|
271
|
+
"endpoint": "/if/flow/recovery/"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"id": "SVC-AUTK-024",
|
|
275
|
+
"payload": "/api/v3/stages/email/verify/",
|
|
276
|
+
"method": "POST",
|
|
277
|
+
"body": "{\"email\":\"attacker@test.com\",\"token\":\"0\",\"user_id\":\"1\"}",
|
|
278
|
+
"tags": ["account-takeover", "verification-bypass", "high"],
|
|
279
|
+
"expected_block": true,
|
|
280
|
+
"severity_hint": "High",
|
|
281
|
+
"notes": "Email verification bypass with null token and user ID injection",
|
|
282
|
+
"category": "Service-Specific",
|
|
283
|
+
"service": "authentik",
|
|
284
|
+
"endpoint": "/api/v3/stages/email/verify/"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"id": "SVC-AUTK-025",
|
|
288
|
+
"payload": "/api/v3/stages/email/verify/",
|
|
289
|
+
"method": "POST",
|
|
290
|
+
"body": "{\"email\":\"victim@test.com\",\"verified\":true}",
|
|
291
|
+
"tags": ["account-takeover", "verification-bypass", "mass-assignment", "critical"],
|
|
292
|
+
"expected_block": true,
|
|
293
|
+
"severity_hint": "Critical",
|
|
294
|
+
"notes": "Email verification bypass via mass assignment",
|
|
295
|
+
"category": "Service-Specific",
|
|
296
|
+
"service": "authentik",
|
|
297
|
+
"endpoint": "/api/v3/stages/email/verify/"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"id": "SVC-AUTK-026",
|
|
301
|
+
"payload": "/api/v3/stages/email/verify/",
|
|
302
|
+
"method": "POST",
|
|
303
|
+
"body": "{\"email\":\"test@test.com\",\"skip_verification\":true}",
|
|
304
|
+
"tags": ["account-takeover", "verification-bypass", "high"],
|
|
305
|
+
"expected_block": true,
|
|
306
|
+
"severity_hint": "High",
|
|
307
|
+
"notes": "Email verification skip flag injection",
|
|
308
|
+
"category": "Service-Specific",
|
|
309
|
+
"service": "authentik",
|
|
310
|
+
"endpoint": "/api/v3/stages/email/verify/"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"id": "SVC-AUTK-027",
|
|
314
|
+
"payload": "/api/v3/core/authenticated_sessions/?session_id=attacker_session",
|
|
315
|
+
"tags": ["session-fixation", "session-hijacking", "high"],
|
|
316
|
+
"expected_block": true,
|
|
317
|
+
"severity_hint": "High",
|
|
318
|
+
"notes": "Session fixation via custom session ID",
|
|
319
|
+
"category": "Service-Specific",
|
|
320
|
+
"service": "authentik",
|
|
321
|
+
"endpoint": "/api/v3/core/authenticated_sessions/"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"id": "SVC-AUTK-028",
|
|
325
|
+
"payload": "/application/o/authorize/?session_state=fixed_session_123",
|
|
326
|
+
"tags": ["oauth", "session-fixation", "high"],
|
|
327
|
+
"expected_block": true,
|
|
328
|
+
"severity_hint": "High",
|
|
329
|
+
"notes": "OAuth session fixation via session_state parameter",
|
|
330
|
+
"category": "Service-Specific",
|
|
331
|
+
"service": "authentik",
|
|
332
|
+
"endpoint": "/application/o/authorize/"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"id": "SVC-AUTK-029",
|
|
336
|
+
"payload": "/api/v3/admin/",
|
|
337
|
+
"tags": ["forced-browsing", "admin-access", "high"],
|
|
338
|
+
"expected_block": true,
|
|
339
|
+
"severity_hint": "High",
|
|
340
|
+
"notes": "Unauthenticated admin API access attempt",
|
|
341
|
+
"category": "Service-Specific",
|
|
342
|
+
"service": "authentik",
|
|
343
|
+
"endpoint": "/api/v3/admin/"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"id": "SVC-AUTK-030",
|
|
347
|
+
"payload": "/.well-known/openid-configuration",
|
|
348
|
+
"tags": ["info-disclosure", "oidc-discovery", "low"],
|
|
349
|
+
"expected_block": false,
|
|
350
|
+
"severity_hint": "Low",
|
|
351
|
+
"notes": "OIDC discovery endpoint (should be public but monitored)",
|
|
352
|
+
"category": "Service-Specific",
|
|
353
|
+
"service": "authentik",
|
|
354
|
+
"endpoint": "/.well-known/openid-configuration"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"id": "SVC-AUTK-031",
|
|
358
|
+
"payload": "/api/v3/flows/bindings/?stage=../../admin/users",
|
|
359
|
+
"tags": ["flow", "traversal", "privilege-escalation", "critical"],
|
|
360
|
+
"expected_block": true,
|
|
361
|
+
"severity_hint": "Critical",
|
|
362
|
+
"notes": "Flow bindings with path traversal to admin users",
|
|
363
|
+
"category": "Service-Specific",
|
|
364
|
+
"service": "authentik",
|
|
365
|
+
"endpoint": "/api/v3/flows/bindings/"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"id": "SVC-AUTK-032",
|
|
369
|
+
"payload": "/api/v3/stages/prompt/prompts/",
|
|
370
|
+
"method": "POST",
|
|
371
|
+
"body": "{\"field_key\":\"{{constructor.constructor('return process')()}}\",\"label\":\"test\"}",
|
|
372
|
+
"tags": ["stage", "ssti", "prompt-injection", "critical"],
|
|
373
|
+
"expected_block": true,
|
|
374
|
+
"severity_hint": "Critical",
|
|
375
|
+
"notes": "Prompt stage with SSTI in field_key",
|
|
376
|
+
"category": "Service-Specific",
|
|
377
|
+
"service": "authentik",
|
|
378
|
+
"endpoint": "/api/v3/stages/prompt/prompts/"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"id": "SVC-AUTK-033",
|
|
382
|
+
"payload": "/application/saml/test/metadata/?download=../../admin/config.xml",
|
|
383
|
+
"tags": ["saml", "traversal", "info-disclosure", "high"],
|
|
384
|
+
"expected_block": true,
|
|
385
|
+
"severity_hint": "High",
|
|
386
|
+
"notes": "SAML metadata with path traversal in download parameter",
|
|
387
|
+
"category": "Service-Specific",
|
|
388
|
+
"service": "authentik",
|
|
389
|
+
"endpoint": "/application/saml/{slug}/metadata/"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"id": "SVC-AUTK-034",
|
|
393
|
+
"payload": "/api/v3/outposts/instances/?provider=*",
|
|
394
|
+
"tags": ["outpost", "enumeration", "wildcard-injection", "high"],
|
|
395
|
+
"expected_block": true,
|
|
396
|
+
"severity_hint": "High",
|
|
397
|
+
"notes": "Outpost enumeration with wildcard provider filter",
|
|
398
|
+
"category": "Service-Specific",
|
|
399
|
+
"service": "authentik",
|
|
400
|
+
"endpoint": "/api/v3/outposts/instances/"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"id": "SVC-AUTK-035",
|
|
404
|
+
"payload": "/api/v3/core/tokens/",
|
|
405
|
+
"method": "POST",
|
|
406
|
+
"body": "{\"identifier\":\"admin\",\"intent\":\"api\",\"expiring\":false}",
|
|
407
|
+
"tags": ["token", "privilege-escalation", "non-expiring", "critical"],
|
|
408
|
+
"expected_block": true,
|
|
409
|
+
"severity_hint": "Critical",
|
|
410
|
+
"notes": "Non-expiring API token creation for admin user",
|
|
411
|
+
"category": "Service-Specific",
|
|
412
|
+
"service": "authentik",
|
|
413
|
+
"endpoint": "/api/v3/core/tokens/"
|
|
414
|
+
}
|
|
415
|
+
]
|