swarmhack-cli 1.4.0 → 1.5.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/README.md CHANGED
@@ -2,18 +2,16 @@
2
2
 
3
3
  Neural swarm-based penetration testing framework.
4
4
 
5
- ## What's New in v1.3.0
6
-
7
- - **17 Exploit Agents**: SQLi, XSS, CMDI, CSRF, IDOR, AuthBypass, SSRF, LFI, SSTI, OpenRedirect, CORS, JWT, XXE, FileUpload, Deserialization, HTTPSmuggling + WebCrawler
8
- - **Recursive Swarm (ADR-004)**: Generation-based re-scanning with 6 trigger types automatically re-scans with discovered credentials
9
- - **Pre-flight Authentication**: 5 auth methods (FormBased, JWT, Cookie, JSON, Custom) via `--auth config.json`
10
- - **Self-Learning Intelligence (ADR-005)**: SONA-backed payload learning, adaptive WAF evasion, rate limiting optimization
11
- - **Semantic Deduplication**: Two-level dedup (canonical key + HNSW vector similarity) catches near-duplicate findings
12
- - **Crown Jewel ML Matching**: Learns new crown jewel patterns beyond the 18 built-in regexes
13
- - **Real HNSW Index**: Replaced HashMap stub with actual approximate nearest neighbor search
14
- - **Checkpoint-on-Detection**: All 17 agents preserve findings before deep exploitation no data loss on timeout
15
- - **UTF-8 Safety**: Fixed byte-slicing panics across 20 files (28 sites)
16
- - **OCSF 1.1.0 Reports**: Industry-standard vulnerability reports with generation lineage tracking
5
+ ## What's New in v1.5.0
6
+
7
+ - **23 Exploit Agents**: Full OWASP Top 10 coverage with 6 new agents (SessionFixation, DangerousMethods, DefaultCredentials, PrivilegeEscalation, MassAssignment, VulnerableComponents)
8
+ - **Intelligence Bus**: 7 typed intel categories shared across all 23 agents (TargetProfile, WafProfile, CredentialIntel, NetworkIntel, FileSystemIntel, AuthStateIntel, ExploitPathIntel)
9
+ - **Runtime Vulnerability Chaining**: Credentials/sessions from SQLi/AuthBypass automatically feed IDOR/PrivEsc/CSRF agents in a live chaining phase
10
+ - **VulnerableComponents Agent (OWASP A06)**: 30 built-in CVE entries fingerprints server versions from headers and matches against known vulnerabilities
11
+ - **CVSS Score Fix**: Severity scores now correctly computed (was always 0.0 due to case mismatch)
12
+ - **Performance**: SwarmHackConfig wrapped in Arc eliminates deep clones on every agent spawn
13
+ - **Agent Pool**: Increased to 25 concurrent slots for 23 agent types
14
+ - **Live Validated**: 16 findings across 3 targets (demo.testfire.net, ginandjuice.shop, testasp.vulnweb.com) with 0 false positives
17
15
 
18
16
  ## Installation
19
17
 
@@ -162,7 +160,7 @@ docker run --rm \
162
160
  --customer "your-customer" --token "your-token"
163
161
  ```
164
162
 
165
- ## Available Agents (17)
163
+ ## Available Agents (23)
166
164
 
167
165
  | Agent | CWE | Description |
168
166
  |-------|-----|-------------|
@@ -183,6 +181,12 @@ docker run --rm \
183
181
  | `file_upload` | CWE-434 | File upload vulnerabilities |
184
182
  | `deserialization` | CWE-502 | Insecure deserialization |
185
183
  | `http_smuggling` | CWE-444 | HTTP request smuggling (CL.TE/TE.CL) |
184
+ | `session_fixation` | CWE-384 | Session fixation and invalidation testing |
185
+ | `dangerous_methods` | CWE-16 | Dangerous HTTP methods (TRACE/XST, PUT upload) |
186
+ | `default_credentials` | CWE-798 | Default credential scanning (20 pairs) |
187
+ | `privilege_escalation` | CWE-862 | Function-level access control testing |
188
+ | `mass_assignment` | CWE-915 | Mass assignment / parameter injection |
189
+ | `vulnerable_components` | CWE-1035 | Version fingerprinting + CVE lookup (30 CVEs) |
186
190
 
187
191
  ## OCSF Reports
188
192
 
@@ -224,6 +228,22 @@ Get your token from [Prancer Portal](https://portal.prancer.io) → Settings →
224
228
 
225
229
  ## Changelog
226
230
 
231
+ ### v1.5.0
232
+ - ADR-006: OWASP Top 10 full coverage — 6 new agents (SessionFixation, DangerousMethods, DefaultCredentials, PrivilegeEscalation, MassAssignment, VulnerableComponents)
233
+ - Intelligence Bus: 7 typed intel categories shared across all 23 agents
234
+ - Runtime vulnerability chaining: credentials/sessions feed consumer agents live
235
+ - VulnerableComponents agent (OWASP A06): 30 built-in CVE entries
236
+ - CVSS score fix (was always 0.0), GOAP precondition key unification
237
+ - SwarmHackConfig wrapped in Arc (performance), agent pool 20→25
238
+ - Live validated: 16 findings, 67 crown jewels, 0 false positives across 3 targets
239
+
240
+ ### v1.4.0
241
+ - Hybrid execution mode (Kill Chain + AEL amplification)
242
+ - SPA false positive elimination
243
+ - Auth crawling and OCSF auth tracking
244
+ - Common endpoint discovery (107 paths)
245
+ - Version bump and CI adjustments
246
+
227
247
  ### v1.3.0
228
248
  - ADR-005: Self-learning intelligence layer (SONA, WAF evasion learning, adaptive rate limiting)
229
249
  - ADR-005: Semantic deduplication + crown jewel ML matching
@@ -205,6 +205,30 @@ agents:
205
205
  enabled: true
206
206
  max_candidates: 5
207
207
  pentest_mode: true
208
+ session_fixation:
209
+ enabled: true
210
+ max_candidates: 3
211
+ pentest_mode: true
212
+ dangerous_methods:
213
+ enabled: true
214
+ max_candidates: 5
215
+ pentest_mode: true
216
+ default_credentials:
217
+ enabled: true
218
+ max_candidates: 3
219
+ pentest_mode: true
220
+ privilege_escalation:
221
+ enabled: true
222
+ max_candidates: 5
223
+ pentest_mode: true
224
+ mass_assignment:
225
+ enabled: true
226
+ max_candidates: 5
227
+ pentest_mode: true
228
+ vulnerable_components:
229
+ enabled: true
230
+ max_candidates: 5
231
+ pentest_mode: true
208
232
 
209
233
  memory:
210
234
  agentdb:
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swarmhack-cli",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "SwarmHack - Neural swarm-based penetration testing framework",
5
5
  "author": "Prancer <support@prancer.io>",
6
6
  "license": "MIT",