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 Saprophytic-seattle561/reverse-skill --skill pentest-toolsgit clone --depth 1 https://github.com/Saprophytic-seattle561/reverse-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/saprophytic-seattle561/reverse-skill/pentest-tools)<a href="https://agentmods.dev/skills/saprophytic-seattle561/reverse-skill/pentest-tools"><img src="https://agentmods.dev/badge/skills/saprophytic-seattle561/reverse-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/saprophytic-seattle561/reverse-skill/pentest-tools"><img src="https://agentmods.dev/badge/skills/saprophytic-seattle561/reverse-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.00133 | $0.03655 |
| Opus 5 | $0.00067 | $0.01827 |
| Sonnet 5 | $0.00027 | $0.00731 |
| Haiku 4.5 | $0.00013 | $0.00365 |
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 6d 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
91% identical to pentest-tools — 30 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 — 302 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.
- 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/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
- src-hunter/references/payloader/by-category/web/云安全漏洞.md 26 KB
- src-hunter/references/payloader/by-category/web/供应链攻击.md 17 KB
- src-hunter/references/payloader/by-category/web/原型链污染.md 19 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.
- 6d ago First seen · 302 lines · 133 tokens per session scan A 94d22db94e5d
pentest-tools is a skill published in the GitHub repository Saprophytic-seattle561/reverse-skill (1 stars, last pushed 2d ago), licensed MIT. It adds 133 tokens to every session and 3,655 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 91% identical to pentest-tools, differing in 30 lines, and is treated as a copy.
Other skills, from other repositories
burp-scan
Burp Suite scanning via MCP tools — passive traffic analysis, active payload testing, OOB verification, and vulnerability reporting using Burp's proxy, HTTP sender, Collaborator, and scanner APIs. Use when the user has Burp Suite running with the AI Agent MCP server and wants to scan, test, or analyze web traffic…
solopi-ai
A command-line framework for testing Android apps and devices with SoloPi, including on-device or cloud AI decision models. It manages devices, test cases, recorded interactions, replays, performance history, and evidence.
argent-tv-interact
Control and inspect TV apps via argent — Apple TV (tvOS), Android TV (leanback), and Amazon Fire TV (Vega). Boot the target, read focus, navigate with the D-pad remote, type, screenshot, and on Vega debug the JS runtime (evaluate, console logs, network inspector). Use when a task targets a TV (runtimeKind "tv", or…
flutter-feature-based-clean-architecture
Organize Flutter apps with modular feature-based clean architecture. Use when creating features under lib/features/ with domain, data, and presentation layers. Do not use for test-only, BlocBuilder, navigation, or spinner requests.
Detox Mobile Testing
Gray-box end-to-end testing for React Native apps with Detox. Covers .detoxrc.js configuration, build and test commands, matchers, device.launchApp control, automatic synchronization, and macOS CI pipelines.
database-redis
Optimize Redis as cache and coordination infrastructure with TTL, eviction, and latency-aware key design. Use when implementing Redis caching, key invalidation, or Redis performance work.