swarmhack-cli 0.2.0 → 1.1.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/config/swarmhack.yaml +43 -2
- package/native/linux-x64/swarmhack +0 -0
- package/package.json +1 -1
package/config/swarmhack.yaml
CHANGED
|
@@ -162,8 +162,49 @@ agents:
|
|
|
162
162
|
enabled: true
|
|
163
163
|
report_info_findings: false # Suppress API endpoint/tech fingerprint info findings
|
|
164
164
|
max_depth: 3
|
|
165
|
-
max_pages: 1000
|
|
165
|
+
max_pages: 100 # ✅ ADR-001: 1000 → 100 for pentest mode (depth over breadth)
|
|
166
166
|
requests_per_second: 10.0
|
|
167
|
+
# ADR-003: 10 new exploit agents
|
|
168
|
+
ssrf:
|
|
169
|
+
enabled: true
|
|
170
|
+
max_candidates: 5
|
|
171
|
+
pentest_mode: true
|
|
172
|
+
lfi:
|
|
173
|
+
enabled: true
|
|
174
|
+
max_candidates: 5
|
|
175
|
+
pentest_mode: true
|
|
176
|
+
ssti:
|
|
177
|
+
enabled: true
|
|
178
|
+
max_candidates: 5
|
|
179
|
+
pentest_mode: true
|
|
180
|
+
open_redirect:
|
|
181
|
+
enabled: true
|
|
182
|
+
max_candidates: 5
|
|
183
|
+
pentest_mode: true
|
|
184
|
+
cors:
|
|
185
|
+
enabled: true
|
|
186
|
+
max_candidates: 5
|
|
187
|
+
pentest_mode: true
|
|
188
|
+
jwt:
|
|
189
|
+
enabled: true
|
|
190
|
+
max_candidates: 5
|
|
191
|
+
pentest_mode: true
|
|
192
|
+
xxe:
|
|
193
|
+
enabled: true
|
|
194
|
+
max_candidates: 5
|
|
195
|
+
pentest_mode: true
|
|
196
|
+
file_upload:
|
|
197
|
+
enabled: true
|
|
198
|
+
max_candidates: 5
|
|
199
|
+
pentest_mode: true
|
|
200
|
+
deserialization:
|
|
201
|
+
enabled: true
|
|
202
|
+
max_candidates: 5
|
|
203
|
+
pentest_mode: true
|
|
204
|
+
http_smuggling:
|
|
205
|
+
enabled: true
|
|
206
|
+
max_candidates: 5
|
|
207
|
+
pentest_mode: true
|
|
167
208
|
|
|
168
209
|
memory:
|
|
169
210
|
agentdb:
|
|
@@ -203,7 +244,7 @@ neural:
|
|
|
203
244
|
mutation_count: 10
|
|
204
245
|
|
|
205
246
|
kill_chain:
|
|
206
|
-
phases: [recon, discovery
|
|
247
|
+
phases: [recon, discovery]
|
|
207
248
|
|
|
208
249
|
containers:
|
|
209
250
|
image: swarmhack/unified-pentest:latest
|
|
Binary file
|