service-enumerator

service-enumerator is an agent for Claude Code from allsmog/blackbox-claude-plugin. It costs 151 tokens per session (1,906 once invoked), scanned C, original, MIT.

An agent for examining discovered services in detail, such as websites, file shares, directories, and directory-service accounts.

In plain words
What is it for?
It is for web technology checks, directory discovery, SMB share and user enumeration, anonymous-access checks, and service-specific reports.
Why use it?
It helps turn a list of detected services into specific findings about users, accessible resources, configurations, and weaknesses.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; names the TodoWrite tool.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/user/.ssh/id_rsa.

Part of the blackbox-htb plugin — 17 skills, 11 commands, 9 agents shipped together

Good fit It is for web technology checks, directory discovery, SMB share and user enumeration, anonymous-access checks, and service-specific reports.

Compare 6 agents from other repositories ↓
Install

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.

Claude Code
/plugin marketplace add allsmog/blackbox-claude-plugin
Claude Code
/plugin install blackbox-htb

Made for: Claude Code.

Or install blackbox-htb, the plugin that ships this one along with the rest of its 17 skills, 11 commands, 9 agents.

Wrote 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.

agentmods badge for service-enumerator

README.md
[![agentmods](https://agentmods.dev/badge/agents/allsmog/blackbox-claude-plugin/service-enumerator.svg)](https://agentmods.dev/agents/allsmog/blackbox-claude-plugin/service-enumerator)
Your own site
<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>
Per session 151 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,906 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 8d ago against content hash 9a61876fa125, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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
blackbox-htb/agents/service-enumerator.md · 293 lines

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

  1. Identify which services need enumeration (from recon or user request)
  2. Create output directory: mkdir -p enum
  3. Run appropriate enumeration tools for each service
  4. Parse and correlate findings
  5. Highlight credentials and sensitive information
  6. 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"

Read the full file on GitHub · 293 lines

Changes

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.

  1. 8d ago First seen · 293 lines · 151 tokens per session scan C 9a61876fa125

Subscribe to this mod's changes

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.

Related

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.

Stickman230/claude-pentest · 60 tokens

Pentester Executor

Executes specific vulnerability tests. Follows 4-phase workflow (Recon → Experiment → Test → Verify), generates PoCs, captures evidence. Specialized by attack type.

Stickman230/claude-pentest · 37 tokens

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…

Stickman230/claude-pentest · 75 tokens

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…

Stickman230/claude-pentest · 78 tokens

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…

Stickman230/claude-pentest · 76 tokens

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…

Stickman230/claude-pentest · 80 tokens