用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ariadoss/superskills --skill pentest命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Use when executing implementation plans with independent tasks in the current session
基于 SOC 职业分类
正在显示 SKILL.md
| name | pentest |
| description | Security scanning via clearwing — source code vulnerability hunting and network pentesting. |
| allowed-tools | ["Bash","Read","Write","Grep","Glob"] |
Authorized security testing using clearwing.
Before any scanning, confirm authorization with the user. Ask:
If authorization is unclear, STOP and do not proceed.
Check if clearwing is installed:
command -v clearwing && clearwing --version
If not installed:
uv tool install clearwing
clearwing setup # Interactive LLM provider configuration
Requires: Python 3.10+, uv, Rust toolchain (for native bridge).
Hunt vulnerabilities in source code using the 11-stage pipeline:
# Standard depth — recommended starting point
clearwing sourcehunt <path-to-repo> --depth standard
# Quick scan — faster, less thorough
clearwing sourcehunt <path-to-repo> --depth quick
# Deep scan — comprehensive, takes longer
clearwing sourcehunt <path-to-repo> --depth deep
The pipeline: preprocess → rank files → generate fuzzing harnesses → tiered hunt (6 specialists) → adversarial verification → patch oracle → variant loop → exploit triage → auto-patch → report.
Evidence levels (ascending confidence):
suspicion — pattern match, needs investigationstatic_corroboration — confirmed by static analysiscrash_reproduced — fuzzer triggered a crashroot_cause_explained — mechanism understoodexploit_demonstrated — exploitability confirmedpatch_validated — fix verifiedScan a live target for service vulnerabilities:
# Single host
clearwing scan <target-ip-or-hostname>
# CIDR block (concurrent)
clearwing parallel <CIDR> --max-concurrent 5
Results are stored in SQLite and exported as:
For guided exploration:
clearwing interactive
clearwing interactive --resume <session_id>
clearwing ci --sarif-output results.sarif