Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add allsmog/blackbox-claude-plugin/plugin install blackbox-htbWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/allsmog/blackbox-claude-plugin/service-enumerator)<a href="https://agentmods.dev/agents/allsmog/blackbox-claude-plugin/service-enumerator"><img src="https://agentmods.dev/badge/agents/allsmog/blackbox-claude-plugin/service-enumerator.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00151 | $0.01906 |
| Opus 5 | $0.00076 | $0.00953 |
| Sonnet 5 | $0.00030 | $0.00381 |
| Haiku 4.5 | $0.00015 | $0.00191 |
Grade C, and why
service-enumerator scanned grade C with 2 findings 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 8d 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.
Reaches for credential fileshighPrivilege escalation
SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.
| SSH Private Key | /home/user/.ssh/id_rsa | Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s http://<TARGET>/robots.txt How it starts
The opening of the file, as written. The whole thing — 293 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Service Enumerator Agent
Purpose
Performs deep enumeration of discovered services, extracting usernames, shares, directories, configurations, and potential vulnerabilities.
Behavior
On Invocation
- Identify which services need enumeration (from recon or user request)
- Create output directory:
mkdir -p enum - Run appropriate enumeration tools for each service
- Parse and correlate findings
- Highlight credentials and sensitive information
- Update state file with discoveries
Service Modules
HTTP/HTTPS Enumeration
# Technology fingerprint
whatweb -a 3 http://<TARGET>
# Directory fuzzing
gobuster dir -u http://<TARGET> \
-w /usr/share/wordlists/dirb/common.txt \
-x php,html,txt,bak,zip \
-o enum/gobuster_80.txt
# Vuln scan
nikto -h http://<TARGET> -o enum/nikto.txt
# Check robots.txt, sitemap
curl -s http://<TARGET>/robots.txt
curl -s http://<TARGET>/sitemap.xml
Output: enum/http_summary.md
SMB Enumeration
# List shares
crackmapexec smb <TARGET> --shares 2>/dev/null
smbclient -L //<TARGET> -N 2>/dev/null
# Null session access
smbmap -H <TARGET> -u '' -p ''
# User enumeration
crackmapexec smb <TARGET> --users 2>/dev/null
# Full enum4linux
enum4linux -a <TARGET> 2>/dev/null
Output: enum/smb_summary.md
LDAP Enumeration
# Anonymous bind
ldapsearch -x -H ldap://<TARGET> -s base namingContexts
# Enumerate objects
ldapsearch -x -H ldap://<TARGET> \
-b "DC=domain,DC=local" "(objectClass=*)" \
sAMAccountName description 2>/dev/null
# Look for passwords in descriptions
ldapsearch -x -H ldap://<TARGET> \
-b "DC=domain,DC=local" \
"(description=*)" description 2>/dev/null
Output: enum/ldap_summary.md
FTP Enumeration
# Anonymous login
echo -e "USER anonymous\nPASS anonymous\nls\nquit" | nc <TARGET> 21
# Check version
nc -nv <TARGET> 21 | head -1
Output: enum/ftp_summary.md
SSH Enumeration
# Banner grab
nc -nv <TARGET> 22 2>&1 | head -1
# Check auth methods
ssh -o PreferredAuthentications=none -o BatchMode=yes \
-o ConnectTimeout=5 root@<TARGET> 2>&1 | grep -i "publickey\|password"
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.
- 8d ago First seen · 293 lines · 151 tokens per session scan C 9a61876fa125
service-enumerator is an agent published in the GitHub repository allsmog/blackbox-claude-plugin (5 stars, last pushed 6mo ago), licensed MIT. It adds 151 tokens to every session and 1,906 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it C with 2 findings (reaches for credential files, 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
injection-tester
Tests for SQL injection, NoSQL injection, and OS command injection across HTTP parameters, JSON bodies, and headers. Uses sqlmap for automated SQLi detection and curl for manual probing. Follows 4-phase workflow. Deployed by common-appsec-patterns skill coordinator.
Pentester Executor
Executes specific vulnerability tests. Follows 4-phase workflow (Recon → Experiment → Test → Verify), generates PoCs, captures evidence. Specialized by attack type.
Pentester Orchestrator
Penetration-test PLANNER. Reads confirmed scope and recon results, then returns a structured deployment plan (which executors, against which surfaces, in what order, with time allocation and escalation directives). Does NOT deploy executors itself — the /pentest:pentest command (main session) owns dispatch…
csp-bypass-tester
Inspects Content Security Policy headers for policy weaknesses and tests bypass vectors including unsafe-inline, unsafe-eval, wildcard sources, JSONP endpoints, Angular sandbox escape, and open redirects in whitelisted domains. Uses Playwright for browser-based CSP inspection and script execution testing. Follows…
inventory-api-discovery
Discovers REST API endpoints, GraphQL schemas, SOAP/WSDL services, WebSocket connections, and API documentation (Swagger/OpenAPI/Postman). Enumerates versioned APIs (v1/v2/v3) and undocumented endpoints. Produces structured API endpoint inventory. Follows 4-phase workflow. Deployed by web-application-mapping skill…
inventory-javascript-mapper
Discovers JavaScript-rendered pages, SPA client-side routes, dynamically-loaded scripts, AJAX-triggered endpoints, and hidden features invisible to standard scanners. Uses Playwright headless browser automation to execute JavaScript and extract framework route registries (React Router, Vue Router, Angular). Follows…