inventory-software-catalog

inventory-software-catalog is an agent for Claude Code from Stickman230/claude-pentest. It costs 71 tokens per session (2,111 once invoked), scanned A, original, MIT.

An agent that identifies the technologies and dependency versions used by a web application. It also creates a software bill of materials, which is a list of the application's components, and flags components linked to known security issues.

In plain words
What is it for?
It examines response headers, HTML, and common project files to find frameworks, runtimes, libraries, and server software, then records the results for CVE testing.
Why use it?
It gives security work a clearer inventory of what the application contains and which components may need further checking.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the pentest plugin — 7 skills, 5 commands, 15 agents shipped together

Good fit It examines response headers, HTML, and common project files to find frameworks, runtimes, libraries, and server software, then records the results for CVE testing.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/stickman230/claude-pentest/inventory-software-catalog
Install

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.

Clone the repo
git clone --depth 1 https://github.com/Stickman230/claude-pentest

Made for: Claude Code.

Or install pentest, the plugin that ships this one along with the rest of its 7 skills, 5 commands, 15 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 inventory-software-catalog

README.md
[![agentmods](https://agentmods.dev/badge/agents/stickman230/claude-pentest/inventory-software-catalog.svg)](https://agentmods.dev/agents/stickman230/claude-pentest/inventory-software-catalog)
Your own site
<a href="https://agentmods.dev/agents/stickman230/claude-pentest/inventory-software-catalog"><img src="https://agentmods.dev/badge/agents/stickman230/claude-pentest/inventory-software-catalog.svg" alt="Measured on agentmods" height="20"></a>
Per session 71 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,111 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00071 $0.02111
Opus 5 $0.00036 $0.01056
Sonnet 5 $0.00014 $0.00422
Haiku 4.5 $0.00007 $0.00211

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

Security

Grade A, and why

inventory-software-catalog 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 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sI https://TARGET 2>&1 | tee outputs/ENGAGEMENT/activity/headers-TARGET.txt
plugins/pentest/agents/inventory-software-catalog.md · 180 lines

How it starts

The opening of the file, as written. The whole thing — 180 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Inventory Software Catalog

Catalog the full technology stack of a target web application. Detect frameworks, runtime versions, and dependencies. Generate a structured SBOM and flag components with known CVEs for downstream CVE testing.

Workflow

Phase 1: Recon

  1. Mount skill file:
    Read plugins/pentest/skills/web-application-mapping/SKILL.md
    
  2. Fingerprint the target passively using HTTP headers and response analysis:
    whatweb https://TARGET -v 2>&1 | tee outputs/ENGAGEMENT/activity/whatweb-TARGET.txt
    curl -sI https://TARGET 2>&1 | tee outputs/ENGAGEMENT/activity/headers-TARGET.txt
    httpx -u https://TARGET -tech-detect -status-code -title -o outputs/ENGAGEMENT/activity/httpx-TARGET.txt
    
  3. Extract server software, frameworks, CMS, CDN, language runtime from response headers and HTML meta tags.
  4. Check for common framework indicator files:
    curl -so /dev/null -w "%{http_code}" https://TARGET/package.json
    curl -so /dev/null -w "%{http_code}" https://TARGET/composer.json
    curl -so /dev/null -w "%{http_code}" https://TARGET/requirements.txt
    curl -so /dev/null -w "%{http_code}" https://TARGET/Gemfile
    curl -so /dev/null -w "%{http_code}" https://TARGET/pom.xml
    
    If any return 200, fetch and parse the file to extract dependency names and versions.
  5. Log:
    {"timestamp":"...","agent":"inventory-software-catalog","action":"recon","target":"https://TARGET","technologies_detected":["Express/4.18.2","React/18.2.0","Nginx/1.24.0"]}
    

Phase 2: Experiment

  1. Use wappalyzer-cli for comprehensive technology detection:
    wappalyzer-cli https://TARGET 2>&1 | tee outputs/ENGAGEMENT/activity/wappalyzer-TARGET.txt
    
  2. Run nuclei technology detection templates:
    nuclei -u https://TARGET -tags tech -o outputs/ENGAGEMENT/activity/nuclei-tech-TARGET.txt
    
  3. If the target appears to be a Node.js application, attempt to retrieve dependency manifest:
    curl -s https://TARGET/package.json | jq '.dependencies, .devDependencies' \
      2>&1 | tee outputs/ENGAGEMENT/activity/package-json-TARGET.txt
    
  4. If the target appears to be a PHP application:
    curl -s https://TARGET/composer.json | jq '.require' \
      2>&1 | tee outputs/ENGAGEMENT/activity/composer-json-TARGET.txt
    
  5. Try automated SBOM generation if source code is accessible locally:
    syft dir:. -o json 2>/dev/null | tee outputs/ENGAGEMENT/activity/syft-sbom.json
    cdxgen -o outputs/ENGAGEMENT/activity/cdxgen-sbom.json 2>/dev/null
    
  6. Log:
    {"timestamp":"...","agent":"inventory-software-catalog","action":"experiment","technique":"wappalyzer+nuclei","components_found":14,"manifest_accessible":true}
    

Read the full file on GitHub · 180 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 · 180 lines · 71 tokens per session scan A d88154642900

Subscribe to this mod's changes

inventory-software-catalog is an agent published in the GitHub repository Stickman230/claude-pentest (99 stars, last pushed 3mo ago), licensed MIT. It adds 71 tokens to every session and 2,111 once invoked, about $0.0004 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-30.

Related

Other agents, from other repositories

darlene

Use this agent when the user asks to "exploit a vulnerability", "test this exploit", "generate exploit", "attack this endpoint", "run exploitation", "verify the vulnerability", or discusses actively exploiting a confirmed finding. This agent selects the right Hexstrike tool chain for the vulnerability type. Context…

ogrodev/fsociety · 188 tokens

scout

Use this agent when the user asks to "run recon", "enumerate a target", "do reconnaissance", "scan subdomains", "map the attack surface", "discover endpoints", or mentions comprehensive target enumeration. This agent orchestrates multiple Hexstrike tools in parallel for maximum coverage. Context: User wants to start a…

ogrodev/fsociety · 176 tokens

exploit-suggester

Use this agent when the user asks "what exploits exist", "how do I exploit this", "suggest attack vectors", "find vulnerabilities", "searchsploit", "what's vulnerable", "how can I get a shell", or needs exploitation guidance. Examples: Context: After discovering Apache 2.4.49 user: "What exploits are there for this?"…

allsmog/blackbox-claude-plugin · 167 tokens

exploit-runner

Use this agent when a specific CVE is identified and you need to find and run a working exploit. This agent will search GitHub for PoC exploits, clone them, and provide execution guidance. Examples: Context: CVE-2025-32433 identified on Erlang SSH user: "Exploit the Erlang SSH" assistant: Clones…

allsmog/blackbox-claude-plugin · 147 tokens

shell-manager

Use this agent when the user asks to "start a listener", "catch a shell", "manage shells", "send command to shell", "check shell output", "set up reverse shell", or needs to maintain persistent shell access during exploitation. Examples: Context: User has RCE and needs to catch reverse shell user: "Start a listener on…

allsmog/blackbox-claude-plugin · 141 tokens

source-analyzer

Use this agent when you discover source code, backup files, or need to analyze application code for vulnerabilities. Triggers on: "analyze source", "found code", "check for vulnerabilities", "review application", "found backup", "downloaded zip/tar", "requirements.txt", "package.json".

allsmog/blackbox-claude-plugin · 67 tokens