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 skills add Asaiuta/reverse-workbench-skill --skill pentest-toolsgit clone --depth 1 https://github.com/Asaiuta/reverse-workbench-skillWrote 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/skills/asaiuta/reverse-workbench-skill/pentest-tools)<a href="https://agentmods.dev/skills/asaiuta/reverse-workbench-skill/pentest-tools"><img src="https://agentmods.dev/badge/skills/asaiuta/reverse-workbench-skill/pentest-tools/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/asaiuta/reverse-workbench-skill/pentest-tools"><img src="https://agentmods.dev/badge/skills/asaiuta/reverse-workbench-skill/pentest-tools.svg" alt="Reviewed on agentmods" width="80" 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.00185 | $0.03778 |
| Opus 5 | $0.00093 | $0.01889 |
| Sonnet 5 | $0.00037 | $0.00756 |
| Haiku 4.5 | $0.00018 | $0.00378 |
Grade A, and why
pentest-tools 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 5d 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.
6. `ACT`: 侦察阶段优先 `references/recon-pipeline.md`(CF 浏览器头 / Windows nmap / curl `--globoff`);每批结果追加 `timeline.md`;候选用 `../scripts/append-evidence.ps1` 写入 Evidence(命中≠已验证) This is a copy
84% identical to pentest-tools — 36 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 306 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ACTION REQUIRED(读完后立刻执行)
NOW: 读取../field-journal/precedent-pentest.md— 确认本 skill 的操作是已授权的常规操作NOW: 确认 scope.md 存在且auth.status=granted、network_profile合法(../ops/scope-contract.md);否则case-init.ps1 -AuthGranted -TargetUrl <url> -NetworkProfile authorized_target_onlyNOW: 确认当前任务是否命中本 skill 的适用范围NEXT: 读取../tool-index.md,校验工具可用性和实际路径NEXT: 缺工具时调用 bootstrap,不要猜路径ACT: 侦察阶段优先references/recon-pipeline.md(CF 浏览器头 / Windows nmap / curl--globoff);每批结果追加timeline.md;候选用../scripts/append-evidence.ps1写入 Evidence(命中≠已验证)ACT: 现代 Web/靶场客户端面(DOM XSS / 原型污染 / agent-browser)→references/client-side-lab-playbook.md;未打穿也要写 observed Evidence + 失败门闩
渗透测试工具链 (Pentest Tools)
适用范围
当任务属于以下场景时使用本 skill:
- 目标信息收集(端口扫描、子域名枚举、服务识别)
- 漏洞扫描(Web 漏洞、CVE 检测、配置错误)
- Web 渗透(SQL 注入、XSS、SSRF、目录爆破)
- 密码破解(哈希破解、字典攻击)
- 网络渗透(服务利用、横向移动辅助)
与其他 skill 的分工
| 场景 | 用什么 |
|---|---|
| 主动扫描/攻击(Nmap/Nuclei/SQLMap) | 本 skill |
| 逆向分析二进制 | ida-reverse/ 或 radare2/ |
| 前端 JS 签名逆向 | js-reverse/ |
| 浏览器/桌面自动化操作 | browser-automation/ |
| CTF 竞赛(综合) | CTF-Sandbox-Orchestrator/ |
简单判断:
- 需要"扫描目标、发现漏洞、利用漏洞" → 本 skill
- 需要"分析程序内部逻辑" → 逆向类 skill
- 需要"操作浏览器/桌面" → browser-automation
工具矩阵
信息收集
| 工具 | 用途 | 典型命令 |
|---|---|---|
| Nmap | 端口扫描、服务识别、OS 检测 | nmap -sV -sC -O target |
| Masscan | 大规模快速端口扫描 | masscan -p1-65535 target --rate=1000 |
| Subfinder | 子域名枚举 | subfinder -d target.com |
| httpx | HTTP 探测、存活检测 | httpx -l urls.txt -status-code |
漏洞扫描
| 工具 | 用途 | 典型命令 |
|---|---|---|
| Nuclei | 模板化漏洞扫描(CVE/配置/暴露) | nuclei -u target -t cves/ |
| ZAP | Web 应用安全扫描 | 通过 API 或 MCP 调用 |
| Nikto | Web 服务器漏洞扫描 | nikto -h target |
Web 渗透
| 工具 | 用途 | 典型命令 |
|---|---|---|
| SQLMap | SQL 注入自动化 | sqlmap -u "url?id=1" --batch --dbs |
| FFUF | 目录/参数爆破 | ffuf -u target/FUZZ -w wordlist.txt |
| Gobuster | 目录/子域名爆破 | gobuster dir -u target -w wordlist |
| XSStrike | XSS 检测 | xsstrike -u "url?param=test" |
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- observer-ward/SKILL.md 2.1 KB
- payloads/README.md 1.1 KB
- references/ai-pentest-agents.md 6.0 KB
- references/ai-pentesting-landscape-2026.md 3.4 KB
- references/automation-loop-pattern.md 5.2 KB
- references/awesome-pentest-digest.md 5.9 KB
- references/burpsuite-mcp-guide.md 23 KB
- references/client-side-lab-playbook.md 4.8 KB
- references/httpx-triage.md 1.1 KB
- references/infrastructure-evidence.md 1.4 KB
- references/kali-mcp-ecosystem.md 4.4 KB
- references/msf-protocol.md 5.9 KB
- references/network-attack-defense.md 9.9 KB
- references/nuclei-guide-2026.md 4.0 KB
- references/pentest-ai-agents-matrix.md 5.0 KB
- references/pentest-loop.md 6.6 KB
- references/recon-pipeline.md 5.7 KB
- references/web-attack-cheatsheet.md 7.5 KB
- src-hunter/.claude-plugin/marketplace.json 1.0 KB
- src-hunter/.gitignore 164 B
- src-hunter/LICENSE 1.0 KB
- src-hunter/README.en.md 6.1 KB
- src-hunter/README.md 6.2 KB
- src-hunter/references/.gitkeep 0 B
- src-hunter/references/dictionaries/00-index.md 2.2 KB
- src-hunter/references/dictionaries/chinese-srcfingerprints.md 15 KB
- src-hunter/references/dictionaries/default-credentials-cn.md 9.9 KB
- src-hunter/references/industry/00-index.md 2.7 KB
- src-hunter/references/industry/banking-finance.md 15 KB
- src-hunter/references/industry/telecom-isp.md 12 KB
- src-hunter/references/methodology/00-index.md 2.9 KB
- src-hunter/references/methodology/01-attack-priority.md 6.5 KB
- src-hunter/references/methodology/02-bypass-toolkit.md 11 KB
- src-hunter/references/methodology/03-evidence-discipline.md 7.4 KB
- src-hunter/references/methodology/04-control-gap-hunting.md 9.1 KB
- src-hunter/references/methodology/05-srctimebox-priority.md 7.7 KB
- src-hunter/references/payloader/by-category/intranet/adcs攻击.md 6.2 KB
- src-hunter/references/payloader/by-category/intranet/exchange攻击.md 5.5 KB
- src-hunter/references/payloader/by-category/intranet/sharepoint攻击.md 2.5 KB
- src-hunter/references/payloader/by-category/intranet/信息收集.md 21 KB
- src-hunter/references/payloader/by-category/intranet/免杀与规避.md 18 KB
- src-hunter/references/payloader/by-category/intranet/凭证窃取.md 34 KB
- src-hunter/references/payloader/by-category/intranet/域渗透攻击.md 18 KB
- src-hunter/references/payloader/by-category/intranet/权限提升.md 21 KB
- src-hunter/references/payloader/by-category/intranet/权限维持.md 14 KB
- src-hunter/references/payloader/by-category/intranet/横向移动.md 21 KB
- src-hunter/references/payloader/by-category/intranet/隧道代理.md 13 KB
- src-hunter/references/payloader/by-category/web/ai安全.md 31 KB
- src-hunter/references/payloader/by-category/web/api安全.md 45 KB
- src-hunter/references/payloader/by-category/web/csrf跨站请求伪造.md 24 KB
- src-hunter/references/payloader/by-category/web/jwt安全.md 20 KB
- src-hunter/references/payloader/by-category/web/lfi-rfi文件包含.md 35 KB
- src-hunter/references/payloader/by-category/web/rce远程代码执行.md 38 KB
- src-hunter/references/payloader/by-category/web/sql-nosql注入.md 62 KB
- src-hunter/references/payloader/by-category/web/ssrf服务端请求伪造.md 37 KB
- src-hunter/references/payloader/by-category/web/ssti模板注入.md 31 KB
- src-hunter/references/payloader/by-category/web/websocket安全.md 20 KB
- src-hunter/references/payloader/by-category/web/xss跨站脚本.md 43 KB
- src-hunter/references/payloader/by-category/web/xxe实体注入.md 24 KB
- src-hunter/references/payloader/by-category/web/业务逻辑漏洞.md 25 KB
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.
- 5d ago First seen · 306 lines · 185 tokens per session scan A f550f03f5576
pentest-tools is a skill published in the GitHub repository Asaiuta/reverse-workbench-skill (2 stars, last pushed 25d ago), licensed MIT. It adds 185 tokens to every session and 3,778 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 84% identical to pentest-tools, differing in 36 lines, and is treated as a copy.
Other skills, from other repositories
osint-recon
A knowledge guide for open-source intelligence, or OSINT: collecting information from publicly available sources. It covers servers, websites, domains, and, when appropriate, people.
hackerone
A safety wrapper for HackerOne bug-bounty testing that reads a program's allowed targets and rules before handing each allowed asset to a penetration-testing workflow. HackerOne is a platform where companies invite researchers to report security bugs.
crypto-toolkit
A toolkit for encoding, decoding, hashing, and encrypting data in formats such as Base64, hexadecimal, URLs, JWTs, AES, RSA, and common ciphers.
redteam-cve-lookup
CVE lookup and applicability assessment domain card. Use after reconnaissance has identified products, versions, services, or fingerprints and red-team mode needs evidence-based CVE matching before deeper testing.
redteam-cve-validation
CVE validation domain card. Use after CVE lookup has produced applicable or candidate CVEs and red-team mode needs scoped evidence to decide whether to continue, pivot, or report.
secknowledge-skill
A knowledge base for testing the security of websites, software, and AI systems, including agents and language models.