## https://sploitus.com/exploit?id=A0009125-227C-5558-BE35-BEE31E07898B
The first open-source pentesting tool built on a real swarm β not just multiple agents in a row.
Quick Start ·
Swarm vs. Multi-Agent ·
How It Works ·
Compare ·
Roadmap
-->
### Attackers automate. Most pentests don't.
Security teams are stuck between **scanners that flag thousands of unverified "maybes"** and **consultants who actually exploit β but cost five figures and show up once a year.** Neither keeps pace with an attack surface that changes every day.
**Pentest Swarm AI is the only open-source pentester built on a _real_ swarm.** Not a single planner LLM calling recon β classify β exploit β report down a fixed line β **dozens of agents work your surface concurrently**, coordinating through a shared stigmergic blackboard. The moment a finding lands it wakes whichever agent it's relevant to, so a 1,000-subdomain target gets worked in parallel, at **machine speed**. And unlike a scanner, the swarm *exploits what it finds and proves it* with captured evidence β then writes the report.
Run it on **any model** β Claude, anything OpenAI-compatible, the new **security-tuned open models** (Pentest-R1 and the wave behind it), or **fully local Ollama / LM Studio**. We don't compete with those models β **we're the harness that gives them hands**: real tools, swarm coordination, scope safety, and evidence-backed reports. Air-gapped, zero API cost, and not one byte of your data leaving your box.
*For **authorized testing only** β see the disclaimer below.*
---
> ### Credits & Inspiration
> This project stands on the shoulders of giants. We credit and thank these projects for pioneering AI-powered offensive security:
>
> - [**PentestGPT**](https://github.com/GreyDGL/PentestGPT) β the OG that proved LLMs can pentest
> - [**PentAGI**](https://github.com/vxcontrol/pentagi) β fully autonomous agent architecture
> - [**Strix**](https://github.com/usestrix/strix) β AI hackers that find and fix vulns
> - [**CAI**](https://github.com/aliasrobotics/cai) β cybersecurity AI framework, 3600x faster than humans
> - [**HackingBuddyGPT**](https://github.com/ipa-lab/hackingBuddyGPT) β LLM hacking in 50 lines of code
> - [**Shannon**](https://github.com/KeygraphHQ/shannon) β white-box AI pentester
> - [**BlacksmithAI**](https://github.com/fr0gger/BlacksmithAI) β multi-agent pentest framework
> - [**PentestAgent**](https://github.com/GH05TCREW/pentestagent) β black-box AI security testing
>
> Their open-source contributions made tools like this possible.
> **Legal Disclaimer:** Pentest Swarm AI is designed exclusively for **authorized security testing**, **bug bounty programs**, **CTF competitions**, and **educational research**. You must obtain explicit written permission from the target system owner before running any scan. Unauthorized access to computer systems is illegal under the Computer Fraud and Abuse Act (CFAA), the Computer Misuse Act, and equivalent laws worldwide. The authors and contributors of this project accept **no liability** for misuse, damage, or any illegal activity conducted with this tool. By using this software, you agree that you are solely responsible for ensuring your use complies with all applicable laws and regulations. **Do not use this tool against systems you do not own or have explicit authorization to test.**
---
## What makes this a swarm?
Most "multi-agent" pentesting tools are a single planner LLM dispatching to specialist agents in a fixed order β recon β classify β exploit β report. That's a **pipeline**, not a swarm.
Pentest Swarm AI is built around three swarm-intelligence primitives:
- **Stigmergy** β agents coordinate by reading and writing findings on a shared blackboard, not by a central planner telling them what to do. A finding's *pheromone weight* biases other agents toward it and decays over time, so stale paths die naturally.
- **Emergence** β attack chains appear that no single agent planned. A recon finding wakes the classifier; a high-severity classification wakes the exploit agent; exploit results feed back into the board and wake the report agent. Order isn't prescribed β it emerges from the blackboard state.
- **Decentralization** β each agent runs its own *trigger predicate*. Add a new agent with its own predicate and it joins the swarm without anyone rewriting the orchestrator.
We built this because the category was empty. Every tool marketed as "swarm" was actually a pipeline. If you find a counter-example, open an issue β we'll add them to the [comparison table](#comparison).
See [**IMPLEMENTATION_PLAN.md**](IMPLEMENTATION_PLAN.md) for the technical deep-dive on stigmergy, pheromone decay, the Postgres-backed blackboard, and why we didn't build on Google ADK / CrewAI / AutoGen.
---
## Quick Start
**Start free β no API key, no cloud, no bill.**
```bash
# install (pick one)
brew install Armur-Ai/tap/pentestswarm # macOS
go install github.com/Armur-Ai/Pentest-Swarm-AI/cmd/pentestswarm@latest # Go
docker run --rm ghcr.io/armur-ai/pentestswarm:latest --help # Docker
```
**Watch it find a real vuln in 2 minutes β no target, no key, all local.** `--lab` spins up a bundled, intentionally-vulnerable app (OWASP Juice Shop) on your machine, points the swarm at it, and tears it down after. Legal, safe, zero setup:
```bash
pentestswarm scan --lab --provider ollama --swarm --follow
```
Ready for a real target? Same command, your model:
```bash
# local model β 100% on your box, zero API key
pentestswarm scan --scope --provider ollama --swarm --follow
# or a cloud model for max quality
export PENTESTSWARM_ORCHESTRATOR_API_KEY=sk-ant-your-key-here
pentestswarm scan --scope --swarm --follow
```
**One command. Your model, your infra, your rules.** New here? `pentestswarm demo` plays the whole campaign offline β that's the GIF above.
Running inside a GitHub Actions workflow? There's an action for that β see [`deploy/github-action/example-workflow.yml`](deploy/github-action/example-workflow.yml).
---
## How the swarm works
Key behaviours:
1. **Agents are independent.** Any one of them can be removed, replaced, or added without rewiring the others.
2. **Pheromones decay per-finding-type.** A `PORT_OPEN` stays hot for hours; a `SESSION` for minutes. Config-driven half-lives.
3. **Scope is enforced at the tool layer and again at the executor.** Defence in depth β `--scope` is not bypassable.
4. **Cleanup is always registered before execution.** SIGINT, crashes, and budget exhaustion all trigger reverse-order cleanup. See `internal/pipeline/cleanup_memory.go` and `cleanup.go`.
5. **Prompt caching on Claude** cuts cost and latency on repeated system prompts (enabled by default for recon + classifier).
---
## Comparison
How we position vs. the rest of the ecosystem. We'll ship real benchmark numbers in a future release (see [Phase 3.3](IMPLEMENTATION_PLAN.md#phase-33--benchmarks-the-credibility-lever)).
| Tool | Architecture | Executes vs. suggests | Memory | Tools wired | MCP | Swarm? |
|---|---|---|---|---|---|---|
| **Pentest Swarm AI** | Stigmergic blackboard | Executes | pgvector + pheromones | 8 ProjectDiscovery + nmap; sqlmap / Burp MCP / Metasploit in roadmap | Yes | β
real |
| PentestGPT | Single-agent ReAct | Suggests | None | None native | No | No |
| HackingBuddyGPT | Single-agent | Executes | Run logs | Shell passthrough | No | No |
| PentAGI | 4 agents + planner | Executes | pgvector | 40+ via MCP/shell | Partial | Pipeline |
| Shannon | White-box + browser | Executes | Session state | Browser DOM | No | Pipeline |
| HexStrike | MCP tool wrapper | Delegates to client LLM | None (stateless) | 150+ via MCP | Yes | No |
| Pentest-R1 | RL-tuned LLM | Executes | Trajectory | CTF-scope | No | No |
If any entry here is wrong or out of date, please open a PR β we want this table to stay honest.
---
## Feature status
Honesty labels: *stable* means shipped + tested, *beta* means works but rough edges, *alpha* means experimental, *planned* means in the [roadmap](IMPLEMENTATION_PLAN.md).
| Feature | Status | Notes |
|---|---|---|
| Sequential 5-phase runner | **stable** | Default mode; battle-tested core |
| Stigmergic swarm scheduler | **alpha** | `--swarm` flag; memory-backed blackboard wired |
| ProjectDiscovery toolchain | **stable** | subfinder, httpx, nuclei, naabu, katana, dnsx, gau |
| `nmap` adapter | **stable** | XML parsed; scope-validated |
| Cleanup registry | **stable** | Always runs on SIGINT / exit / budget-cancel |
| Claude prompt caching | **stable** | Enabled for recon + classifier by default |
| `--strict` LLM mode | **stable** | Promotes LLM errors to fatal |
| CVSS v3.1 scoring | **stable** | FIRST spec |
| Postgres blackboard backend | **beta** | Migration shipped; runner uses memory-board for now |
| MCP server | **beta** | `pentestswarm mcp serve` |
| VS Code extension | **beta** | `deploy/vscode/` |
| GitHub Action | **beta** | `deploy/github-action/action.yml` with SARIF |
| Swarm playbooks (5) | **beta** | `playbooks/{bug-bounty,external-asm,ci-cd,internal-network,ctf-solver}.yaml` |
| Live dashboard | **alpha** | `web/`; UI built, wiring to live campaigns in progress |
| Burp MCP bridge | **planned** | Wave 2 |
| Metasploit / ZAP / sqlmap adapters | **planned** | Wave 2 |
| Fine-tuned Pentest-Swarm model | **planned** | Wave 3 (Pentest-R1 recipe) |
| Cybench / AutoPenBench benchmarks | **planned** | Wave 3 |
---
## CLI
```bash
pentestswarm scan --scope # Launch the swarm
pentestswarm scan --scope --swarm # Use the stigmergic scheduler
pentestswarm scan --scope --strict # Fail on LLM errors
pentestswarm campaign watch # Live TUI β watch agents work
pentestswarm campaign explore # Browse attack surface interactively
pentestswarm playbook run --target # Run a community playbook
pentestswarm doctor # 8-point system health check
pentestswarm mcp serve # MCP server for Claude/Cursor
pentestswarm serve # Start API server + dashboard
```
---
## LLM Providers
All agents inherit from a single provider config. Set one key, the entire swarm works.
**Bring your own model β we're the harness, not the model.** A new wave of open models is being fine-tuned specifically for offensive security (Pentest-R1 and others). Pentest Swarm turns any of them β or a frontier model, or a fully-local one β into an *operating* pentester: real tools, swarm coordination, scope enforcement, and evidence-backed reports. The model does the reasoning; the swarm does the work.
| Provider | Setup | Privacy | Best for |
|----------|-------|---------|----------|
| **Claude** (default) | `export PENTESTSWARM_ORCHESTRATOR_API_KEY=...` | Cloud | Best quality, zero setup, prompt caching |
| **Ollama** | Install Ollama + pull models | 100% local | Full privacy, air-gapped |
| **LM Studio** | Load model, enable server | 100% local | GUI model management |
| **[OrcaRouter](https://www.orcarouter.ai)** | `export PENTESTSWARM_ORCHESTRATOR_API_KEY=sk-orca-...` | Cloud | One endpoint for Claude/GPT + other frontier models, gateway-level security |
---
## Tech Stack
| Component | Technology | Why |
|-----------|-----------|-----|
| Platform | **Go 1.24** | Single binary, goroutine concurrency, native security tools |
| CLI | **Cobra + bubbletea** | Beautiful TUI with multi-panel agent view |
| LLM | **Claude API / OrcaRouter / Ollama / LM Studio** | Best quality cloud + full privacy local |
| Security Tools | **subfinder Β· httpx Β· nuclei Β· naabu Β· katana Β· dnsx Β· gau Β· nmap** | ProjectDiscovery Go libs + nmap subprocess |
| Blackboard | **Postgres 16 + pgvector** | Transactional writes, vector similarity, pheromone decay in SQL |
| Cache | **Redis 7** | Rate limiting, session state |
| Dashboard | **Next.js 15 + shadcn/ui + tremor** | Dark-first, chart-heavy |
| MCP | **JSON-RPC stdio** | Claude Desktop + Cursor integration |
---
## Development
```bash
git clone https://github.com/Armur-Ai/Pentest-Swarm-AI.git
cd Pentest-Swarm-AI
./scripts/setup.sh # Install tools, start Postgres/Redis/Ollama
make build # Compile binary
make test # Run tests
make dev # Hot-reload development
```
Regenerate the demo GIF after any CLI change:
```bash
brew install vhs # one-off
vhs docs/demo-flashy.tape
```
---
## Roadmap
See [**IMPLEMENTATION_PLAN.md**](IMPLEMENTATION_PLAN.md) for the full phased plan. Short version:
- **Wave 1** (in flight): real swarm architecture (done), dashboard wire-up, Burp MCP
- **Wave 2**: sqlmap / Metasploit / ZAP adapters, bug-bounty + ASM + CI/CD playbook polish, official GitHub Action in Marketplace
- **Wave 3**: fine-tuned Pentest-Swarm model (Pentest-R1 recipe), Cybench / AutoPenBench / CVE-Bench numbers, agent-memory poisoning hardening (MINJA / MemoryGraft defences)
---
## Why "Swarm"?
Single agents are tools. Pipelines dressed up as agents are slightly fancier tools. A **swarm** is different: agents share an environment, each agent's writes influence other agents' behaviour, and the useful work is emergent rather than prescribed. That's what lets a swarm handle a 1,000-subdomain target without anyone writing a plan for it.
**One agent is a tool. A swarm is a platform.**
---
## Community
### [Join the swarm on Discord β](https://discord.gg/6qtkhpW8tk) π
We're building the first *real* open-source pentest swarm in the open β come build it with us. In [Discord](https://discord.gg/6qtkhpW8tk) you can share findings, request a tool adapter, argue about stigmergy and pheromone decay, get help running your first scan, or grab a [`good first issue`](https://github.com/Armur-Ai/Pentest-Swarm-AI/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22) and ship a PR. Researchers, red-teamers, and the AI-security-curious all welcome.
> β **If a real open-source swarm is something you want to exist, drop a star.** Star velocity is the fuel that keeps this shipping β it's the single biggest thing you can do in ten seconds.
---
## Who's using Pentest Swarm?
Running Pentest Swarm β internally, on client engagements, in CI, or embedded in your own workflow? **[Add your org to ADOPTERS.md](ADOPTERS.md)** with a quick PR β it helps others trust the project and helps us prioritize what to build. Not ready to be listed publicly? A hello in [Discord](https://discord.gg/6qtkhpW8tk) still helps.
---
## Enterprise & Commercial Support
Pentest Swarm AI is free and open source (AGPL-3.0), and always will be. If your team wants a hand getting it into production, **[Armur AI](https://github.com/Armur-Ai)** β the team behind the project β offers commercial services:
- **Managed deployment** on your infrastructure β cloud, on-prem, or fully air-gapped (no data leaves your environment)
- **Integration & customization** β wire it into your SIEM, ticketing, and CI, or build custom tools and playbooks for your stack
- **Priority support & SLAs** β a direct line to the maintainers
- **Training & onboarding** β get your security team productive fast
Especially useful for startups and enterprises that want the control of self-hosting without doing the plumbing themselves.
π§ **[akhil@armur.ai](mailto:akhil@armur.ai)** β tell us your setup and what you're trying to do.
---
## License
**GNU Affero General Public License v3.0 (AGPL-3.0)** β see [LICENSE](LICENSE).
### What this means for you
| Use case | Allowed? |
|---|---|
| Run Pentest Swarm on your own infrastructure (CI, laptop, internal red team) | β
yes, no obligations |
| Use it on authorized bug-bounty programs / pentests | β
yes, no obligations |
| Fork it for your own private experiments | β
yes, no obligations |
| Distribute a modified binary | β
yes β must share your modifications under AGPL |
| Run a modified version as a **paid SaaS** or network service | β
yes β must share your modifications under AGPL |
The AGPL exists specifically to prevent the SaaS-fork loophole: anyone who improves Pentest Swarm and offers it commercially must share their improvements with the community. We made it open source; we want it to *stay* open source even as it scales.
If you have a use case the table doesn't cover, open an issue and ask.
Built by [Armur AI](https://github.com/Armur-Ai).