@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,423 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "SVC-IMMICH-001",
|
|
4
|
+
"payload": "/api/assets/../../admin/config",
|
|
5
|
+
"tags": ["asset", "traversal", "admin-access", "quick", "critical"],
|
|
6
|
+
"expected_block": true,
|
|
7
|
+
"severity_hint": "Critical",
|
|
8
|
+
"notes": "Asset path traversal to admin config endpoint",
|
|
9
|
+
"category": "Service-Specific",
|
|
10
|
+
"service": "immich",
|
|
11
|
+
"endpoint": "/api/assets/"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"id": "SVC-IMMICH-002",
|
|
15
|
+
"payload": "/api/assets/..%2f..%2fuser%2fme",
|
|
16
|
+
"tags": ["asset", "traversal", "encoded", "high"],
|
|
17
|
+
"expected_block": true,
|
|
18
|
+
"severity_hint": "High",
|
|
19
|
+
"notes": "Asset path traversal with URL encoding to user endpoint",
|
|
20
|
+
"category": "Service-Specific",
|
|
21
|
+
"service": "immich",
|
|
22
|
+
"endpoint": "/api/assets/"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "SVC-IMMICH-003",
|
|
26
|
+
"payload": "/api/assets/../../../etc/passwd",
|
|
27
|
+
"tags": ["asset", "traversal", "file-read", "critical"],
|
|
28
|
+
"expected_block": true,
|
|
29
|
+
"severity_hint": "Critical",
|
|
30
|
+
"notes": "Asset path traversal attempting system file read",
|
|
31
|
+
"category": "Service-Specific",
|
|
32
|
+
"service": "immich",
|
|
33
|
+
"endpoint": "/api/assets/"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"id": "SVC-IMMICH-004",
|
|
37
|
+
"payload": "/api/assets/test%00.jpg",
|
|
38
|
+
"tags": ["asset", "null-byte", "quick", "high"],
|
|
39
|
+
"expected_block": true,
|
|
40
|
+
"severity_hint": "High",
|
|
41
|
+
"notes": "Asset ID with null byte injection",
|
|
42
|
+
"category": "Service-Specific",
|
|
43
|
+
"service": "immich",
|
|
44
|
+
"endpoint": "/api/assets/"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": "SVC-IMMICH-005",
|
|
48
|
+
"payload": "/api/assets/../albums/shared",
|
|
49
|
+
"tags": ["asset", "traversal", "idor", "high"],
|
|
50
|
+
"expected_block": true,
|
|
51
|
+
"severity_hint": "High",
|
|
52
|
+
"notes": "Asset traversal to shared albums (IDOR)",
|
|
53
|
+
"category": "Service-Specific",
|
|
54
|
+
"service": "immich",
|
|
55
|
+
"endpoint": "/api/assets/"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"id": "SVC-IMMICH-006",
|
|
59
|
+
"payload": "/api/assets",
|
|
60
|
+
"method": "DELETE",
|
|
61
|
+
"body": "{\"ids\":[\"*\"]}",
|
|
62
|
+
"tags": ["bulk", "injection", "data-destruction", "critical"],
|
|
63
|
+
"expected_block": true,
|
|
64
|
+
"severity_hint": "Critical",
|
|
65
|
+
"notes": "Bulk delete with wildcard injection",
|
|
66
|
+
"category": "Service-Specific",
|
|
67
|
+
"service": "immich",
|
|
68
|
+
"endpoint": "/api/assets"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"id": "SVC-IMMICH-007",
|
|
72
|
+
"payload": "/api/assets",
|
|
73
|
+
"method": "DELETE",
|
|
74
|
+
"body": "{\"ids\":[\"1 OR 1=1\"]}",
|
|
75
|
+
"tags": ["bulk", "sqli", "data-destruction", "critical"],
|
|
76
|
+
"expected_block": true,
|
|
77
|
+
"severity_hint": "Critical",
|
|
78
|
+
"notes": "Bulk delete with SQL injection in ID array",
|
|
79
|
+
"category": "Service-Specific",
|
|
80
|
+
"service": "immich",
|
|
81
|
+
"endpoint": "/api/assets"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "SVC-IMMICH-008",
|
|
85
|
+
"payload": "/api/assets",
|
|
86
|
+
"method": "PUT",
|
|
87
|
+
"body": "{\"ids\":[\"../../admin/assets\"]}",
|
|
88
|
+
"tags": ["bulk", "traversal", "privilege-escalation", "critical"],
|
|
89
|
+
"expected_block": true,
|
|
90
|
+
"severity_hint": "Critical",
|
|
91
|
+
"notes": "Bulk update with path traversal in ID array",
|
|
92
|
+
"category": "Service-Specific",
|
|
93
|
+
"service": "immich",
|
|
94
|
+
"endpoint": "/api/assets"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"id": "SVC-IMMICH-009",
|
|
98
|
+
"payload": "/api/assets",
|
|
99
|
+
"method": "POST",
|
|
100
|
+
"body": "{\"ids\":[\"1\",\"2\",\"3\",\"...\"], \"repeat\": 10000}",
|
|
101
|
+
"tags": ["bulk", "dos", "resource-exhaustion", "high"],
|
|
102
|
+
"expected_block": true,
|
|
103
|
+
"severity_hint": "High",
|
|
104
|
+
"notes": "Bulk operation with excessive ID count (DoS)",
|
|
105
|
+
"category": "Service-Specific",
|
|
106
|
+
"service": "immich",
|
|
107
|
+
"endpoint": "/api/assets"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"id": "SVC-IMMICH-010",
|
|
111
|
+
"payload": "/api/assets",
|
|
112
|
+
"method": "PUT",
|
|
113
|
+
"body": "{\"ids\":[\"%00null\",\"../user2\"]}",
|
|
114
|
+
"tags": ["bulk", "null-byte", "traversal", "high"],
|
|
115
|
+
"expected_block": true,
|
|
116
|
+
"severity_hint": "High",
|
|
117
|
+
"notes": "Bulk update with null byte and traversal in IDs",
|
|
118
|
+
"category": "Service-Specific",
|
|
119
|
+
"service": "immich",
|
|
120
|
+
"endpoint": "/api/assets"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"id": "SVC-IMMICH-011",
|
|
124
|
+
"payload": "/api/assets/1/metadata",
|
|
125
|
+
"method": "PUT",
|
|
126
|
+
"body": "{\"exifData\":{\"UserComment\":\"<script>alert(1)</script>\"}}",
|
|
127
|
+
"tags": ["metadata", "xss", "stored", "high"],
|
|
128
|
+
"expected_block": true,
|
|
129
|
+
"severity_hint": "High",
|
|
130
|
+
"notes": "Metadata injection with XSS in EXIF field",
|
|
131
|
+
"category": "Service-Specific",
|
|
132
|
+
"service": "immich",
|
|
133
|
+
"endpoint": "/api/assets/{id}/metadata"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "SVC-IMMICH-012",
|
|
137
|
+
"payload": "/api/assets/1/metadata",
|
|
138
|
+
"method": "PUT",
|
|
139
|
+
"body": "{\"exifData\":{\"GPSLatitude\":\"../../config\"}}",
|
|
140
|
+
"tags": ["metadata", "traversal", "injection", "high"],
|
|
141
|
+
"expected_block": true,
|
|
142
|
+
"severity_hint": "High",
|
|
143
|
+
"notes": "Metadata injection with path traversal in GPS field",
|
|
144
|
+
"category": "Service-Specific",
|
|
145
|
+
"service": "immich",
|
|
146
|
+
"endpoint": "/api/assets/{id}/metadata"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"id": "SVC-IMMICH-013",
|
|
150
|
+
"payload": "/api/assets/1/metadata",
|
|
151
|
+
"method": "PUT",
|
|
152
|
+
"body": "{\"customKey\":\"' OR '1'='1\"}",
|
|
153
|
+
"tags": ["metadata", "sqli", "injection", "critical"],
|
|
154
|
+
"expected_block": true,
|
|
155
|
+
"severity_hint": "Critical",
|
|
156
|
+
"notes": "Metadata injection with SQL injection in custom key",
|
|
157
|
+
"category": "Service-Specific",
|
|
158
|
+
"service": "immich",
|
|
159
|
+
"endpoint": "/api/assets/{id}/metadata"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"id": "SVC-IMMICH-014",
|
|
163
|
+
"payload": "/api/assets/1/metadata",
|
|
164
|
+
"method": "PUT",
|
|
165
|
+
"body": "{\"description\":\"{{constructor.constructor('return process.env')()}}\"}",
|
|
166
|
+
"tags": ["metadata", "ssti", "info-disclosure", "high"],
|
|
167
|
+
"expected_block": true,
|
|
168
|
+
"severity_hint": "High",
|
|
169
|
+
"notes": "Metadata injection with SSTI attempting env leak",
|
|
170
|
+
"category": "Service-Specific",
|
|
171
|
+
"service": "immich",
|
|
172
|
+
"endpoint": "/api/assets/{id}/metadata"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"id": "SVC-IMMICH-015",
|
|
176
|
+
"payload": "/api/assets/1/metadata",
|
|
177
|
+
"method": "PUT",
|
|
178
|
+
"body": "{\"tags\":[\"$where\",\"this.password\"]}",
|
|
179
|
+
"tags": ["metadata", "nosqli", "injection", "critical"],
|
|
180
|
+
"expected_block": true,
|
|
181
|
+
"severity_hint": "Critical",
|
|
182
|
+
"notes": "Metadata injection with NoSQL injection in tags",
|
|
183
|
+
"category": "Service-Specific",
|
|
184
|
+
"service": "immich",
|
|
185
|
+
"endpoint": "/api/assets/{id}/metadata"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"id": "SVC-IMMICH-016",
|
|
189
|
+
"payload": "/api/devices",
|
|
190
|
+
"tags": ["device", "enumeration", "info-disclosure", "quick", "medium"],
|
|
191
|
+
"expected_block": false,
|
|
192
|
+
"severity_hint": "Medium",
|
|
193
|
+
"notes": "Device enumeration (should require auth)",
|
|
194
|
+
"category": "Service-Specific",
|
|
195
|
+
"service": "immich",
|
|
196
|
+
"endpoint": "/api/devices"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"id": "SVC-IMMICH-017",
|
|
200
|
+
"payload": "/api/devices/1",
|
|
201
|
+
"tags": ["device", "idor", "info-disclosure", "high"],
|
|
202
|
+
"expected_block": true,
|
|
203
|
+
"severity_hint": "High",
|
|
204
|
+
"notes": "Device access via sequential ID (IDOR)",
|
|
205
|
+
"category": "Service-Specific",
|
|
206
|
+
"service": "immich",
|
|
207
|
+
"endpoint": "/api/devices/{id}"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"id": "SVC-IMMICH-018",
|
|
211
|
+
"payload": "/api/devices/../admin/devices",
|
|
212
|
+
"tags": ["device", "traversal", "admin-access", "critical"],
|
|
213
|
+
"expected_block": true,
|
|
214
|
+
"severity_hint": "Critical",
|
|
215
|
+
"notes": "Device traversal to admin devices endpoint",
|
|
216
|
+
"category": "Service-Specific",
|
|
217
|
+
"service": "immich",
|
|
218
|
+
"endpoint": "/api/devices"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"id": "SVC-IMMICH-019",
|
|
222
|
+
"payload": "/api/devices/test%2f..%2fadmin",
|
|
223
|
+
"tags": ["device", "traversal", "encoded", "high"],
|
|
224
|
+
"expected_block": true,
|
|
225
|
+
"severity_hint": "High",
|
|
226
|
+
"notes": "Device enumeration with URL-encoded traversal",
|
|
227
|
+
"category": "Service-Specific",
|
|
228
|
+
"service": "immich",
|
|
229
|
+
"endpoint": "/api/devices/{id}"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"id": "SVC-IMMICH-020",
|
|
233
|
+
"payload": "/api/devices/00000000-0000-0000-0000-000000000001",
|
|
234
|
+
"tags": ["device", "enumeration", "predictable-id", "medium"],
|
|
235
|
+
"expected_block": false,
|
|
236
|
+
"severity_hint": "Medium",
|
|
237
|
+
"notes": "Device access via predictable UUID",
|
|
238
|
+
"category": "Service-Specific",
|
|
239
|
+
"service": "immich",
|
|
240
|
+
"endpoint": "/api/devices/{id}"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"id": "SVC-IMMICH-021",
|
|
244
|
+
"payload": "/api/face",
|
|
245
|
+
"method": "PUT",
|
|
246
|
+
"body": "{\"id\":\"../../admin/face\",\"data\":\"malicious_vector\"}",
|
|
247
|
+
"tags": ["ml", "poisoning", "traversal", "critical"],
|
|
248
|
+
"expected_block": true,
|
|
249
|
+
"severity_hint": "Critical",
|
|
250
|
+
"notes": "Face data poisoning with path traversal in ID",
|
|
251
|
+
"category": "Service-Specific",
|
|
252
|
+
"service": "immich",
|
|
253
|
+
"endpoint": "/api/face"
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"id": "SVC-IMMICH-022",
|
|
257
|
+
"payload": "/api/face",
|
|
258
|
+
"method": "PUT",
|
|
259
|
+
"body": "{\"id\":\"<img src=x onerror=alert(1)>\",\"embedding\":[0.1,0.2]}",
|
|
260
|
+
"tags": ["ml", "xss", "stored", "high"],
|
|
261
|
+
"expected_block": true,
|
|
262
|
+
"severity_hint": "High",
|
|
263
|
+
"notes": "Face data poisoning with XSS in face ID",
|
|
264
|
+
"category": "Service-Specific",
|
|
265
|
+
"service": "immich",
|
|
266
|
+
"endpoint": "/api/face"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"id": "SVC-IMMICH-023",
|
|
270
|
+
"payload": "/api/face",
|
|
271
|
+
"method": "PUT",
|
|
272
|
+
"body": "{\"personId\":\"../../../user-admin/person-1\",\"faceId\":\"1\"}",
|
|
273
|
+
"tags": ["ml", "traversal", "privilege-escalation", "critical"],
|
|
274
|
+
"expected_block": true,
|
|
275
|
+
"severity_hint": "Critical",
|
|
276
|
+
"notes": "Face person reassignment with path traversal",
|
|
277
|
+
"category": "Service-Specific",
|
|
278
|
+
"service": "immich",
|
|
279
|
+
"endpoint": "/api/face"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"id": "SVC-IMMICH-024",
|
|
283
|
+
"payload": "/api/face",
|
|
284
|
+
"method": "POST",
|
|
285
|
+
"body": "{\"embedding\":[999,999,999], \"personId\":\"admin\"}",
|
|
286
|
+
"tags": ["ml", "poisoning", "cross-user", "high"],
|
|
287
|
+
"expected_block": true,
|
|
288
|
+
"severity_hint": "High",
|
|
289
|
+
"notes": "Face embedding poisoning targeting admin user",
|
|
290
|
+
"category": "Service-Specific",
|
|
291
|
+
"service": "immich",
|
|
292
|
+
"endpoint": "/api/face"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"id": "SVC-IMMICH-025",
|
|
296
|
+
"payload": "/api/face",
|
|
297
|
+
"method": "PUT",
|
|
298
|
+
"body": "{\"data\":{\"name\":\"{{7*7}}\",\"embedding\":[1,2,3]}}",
|
|
299
|
+
"tags": ["ml", "ssti", "injection", "high"],
|
|
300
|
+
"expected_block": true,
|
|
301
|
+
"severity_hint": "High",
|
|
302
|
+
"notes": "Face data with SSTI in name field",
|
|
303
|
+
"category": "Service-Specific",
|
|
304
|
+
"service": "immich",
|
|
305
|
+
"endpoint": "/api/face"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"id": "SVC-IMMICH-026",
|
|
309
|
+
"payload": "/api/people/1/reassign",
|
|
310
|
+
"method": "POST",
|
|
311
|
+
"body": "{\"targetPersonId\":\"../../admin-person\"}",
|
|
312
|
+
"tags": ["person", "traversal", "face-hijacking", "critical"],
|
|
313
|
+
"expected_block": true,
|
|
314
|
+
"severity_hint": "Critical",
|
|
315
|
+
"notes": "Person reassignment with admin face hijacking",
|
|
316
|
+
"category": "Service-Specific",
|
|
317
|
+
"service": "immich",
|
|
318
|
+
"endpoint": "/api/people/{id}/reassign"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"id": "SVC-IMMICH-027",
|
|
322
|
+
"payload": "/api/people/1/merge",
|
|
323
|
+
"method": "POST",
|
|
324
|
+
"body": "{\"ids\":[\"../admin/person-1\",\"2\"]}",
|
|
325
|
+
"tags": ["person", "traversal", "privilege-escalation", "critical"],
|
|
326
|
+
"expected_block": true,
|
|
327
|
+
"severity_hint": "Critical",
|
|
328
|
+
"notes": "Person merge with path traversal in face ID",
|
|
329
|
+
"category": "Service-Specific",
|
|
330
|
+
"service": "immich",
|
|
331
|
+
"endpoint": "/api/people/{id}/merge"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"id": "SVC-IMMICH-028",
|
|
335
|
+
"payload": "/api/people/reassign",
|
|
336
|
+
"method": "POST",
|
|
337
|
+
"body": "{\"faceId\":\"1\",\"personId\":\"admin\"}",
|
|
338
|
+
"tags": ["person", "unauthorized", "face-hijacking", "high"],
|
|
339
|
+
"expected_block": true,
|
|
340
|
+
"severity_hint": "High",
|
|
341
|
+
"notes": "Unauthorized person reassignment to admin",
|
|
342
|
+
"category": "Service-Specific",
|
|
343
|
+
"service": "immich",
|
|
344
|
+
"endpoint": "/api/people/reassign"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"id": "SVC-IMMICH-029",
|
|
348
|
+
"payload": "/api/search/metadata?query=' OR '1'='1",
|
|
349
|
+
"tags": ["search", "sqli", "quick", "critical"],
|
|
350
|
+
"expected_block": true,
|
|
351
|
+
"severity_hint": "Critical",
|
|
352
|
+
"notes": "Search with SQL injection in query",
|
|
353
|
+
"category": "Service-Specific",
|
|
354
|
+
"service": "immich",
|
|
355
|
+
"endpoint": "/api/search/metadata"
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"id": "SVC-IMMICH-030",
|
|
359
|
+
"payload": "/api/search/metadata?query=../../config",
|
|
360
|
+
"tags": ["search", "traversal", "info-disclosure", "high"],
|
|
361
|
+
"expected_block": true,
|
|
362
|
+
"severity_hint": "High",
|
|
363
|
+
"notes": "Search with path traversal in query",
|
|
364
|
+
"category": "Service-Specific",
|
|
365
|
+
"service": "immich",
|
|
366
|
+
"endpoint": "/api/search/metadata"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"id": "SVC-IMMICH-031",
|
|
370
|
+
"payload": "/api/search/smart?query=<script>alert(1)</script>",
|
|
371
|
+
"tags": ["search", "xss", "reflected", "high"],
|
|
372
|
+
"expected_block": true,
|
|
373
|
+
"severity_hint": "High",
|
|
374
|
+
"notes": "Smart search with reflected XSS",
|
|
375
|
+
"category": "Service-Specific",
|
|
376
|
+
"service": "immich",
|
|
377
|
+
"endpoint": "/api/search/smart"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"id": "SVC-IMMICH-032",
|
|
381
|
+
"payload": "/api/search/person?name=*)(&(userPassword=*)",
|
|
382
|
+
"tags": ["search", "ldapi", "injection", "critical"],
|
|
383
|
+
"expected_block": true,
|
|
384
|
+
"severity_hint": "Critical",
|
|
385
|
+
"notes": "Person search with LDAP injection",
|
|
386
|
+
"category": "Service-Specific",
|
|
387
|
+
"service": "immich",
|
|
388
|
+
"endpoint": "/api/search/person"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"id": "SVC-IMMICH-033",
|
|
392
|
+
"payload": "/api/oauth/callback?code=malicious&state=../../admin/login",
|
|
393
|
+
"tags": ["oauth", "callback-manipulation", "quick", "critical"],
|
|
394
|
+
"expected_block": true,
|
|
395
|
+
"severity_hint": "Critical",
|
|
396
|
+
"notes": "OAuth callback with traversal in state parameter",
|
|
397
|
+
"category": "Service-Specific",
|
|
398
|
+
"service": "immich",
|
|
399
|
+
"endpoint": "/api/oauth/callback"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"id": "SVC-IMMICH-034",
|
|
403
|
+
"payload": "/api/oauth/authorize?redirect_uri=https://evil.com",
|
|
404
|
+
"tags": ["oauth", "open-redirect", "critical"],
|
|
405
|
+
"expected_block": true,
|
|
406
|
+
"severity_hint": "Critical",
|
|
407
|
+
"notes": "OAuth authorize with open redirect",
|
|
408
|
+
"category": "Service-Specific",
|
|
409
|
+
"service": "immich",
|
|
410
|
+
"endpoint": "/api/oauth/authorize"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"id": "SVC-IMMICH-035",
|
|
414
|
+
"payload": "/api/oauth/mobile/redirect?url=javascript:alert(1)",
|
|
415
|
+
"tags": ["oauth", "xss", "javascript-protocol", "critical"],
|
|
416
|
+
"expected_block": true,
|
|
417
|
+
"severity_hint": "Critical",
|
|
418
|
+
"notes": "OAuth mobile redirect with javascript: protocol",
|
|
419
|
+
"category": "Service-Specific",
|
|
420
|
+
"service": "immich",
|
|
421
|
+
"endpoint": "/api/oauth/mobile/redirect"
|
|
422
|
+
}
|
|
423
|
+
]
|