用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ariadoss/superskills --skill fuzz命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | fuzz |
| description | Lightweight web fuzzing via ffuf — directory discovery, parameter testing, subdomain enumeration. |
| allowed-tools | ["Bash","Read","Write"] |
Lightweight web application fuzzing using ffuf.
command -v ffuf && ffuf -V
If not installed:
brew install ffuf # macOS
# or
go install github.com/ffuf/ffuf/v2@latest
/usr/share/wordlists/ # Kali default
/opt/homebrew/share/wordlists/ # Homebrew
~/.local/share/wordlists/ # User-local
# SecLists (install: brew install seclists)
/opt/homebrew/share/seclists/Discovery/Web-Content/common.txt
/opt/homebrew/share/seclists/Discovery/Web-Content/directory-list-2.3-medium.txt
/opt/homebrew/share/seclists/Discovery/DNS/subdomains-top1million-5000.txt
/opt/homebrew/share/seclists/Fuzzing/LFI/LFI-Jhaddix.txt
If no wordlists found: brew install seclists
ffuf -u https://TARGET/FUZZ -w wordlist.txt -mc 200,301,302,403
ffuf -u https://TARGET/api/FUZZ -w wordlist.txt -mc 200,401,403,405
ffuf -u "https://TARGET/page?FUZZ=value" -w params.txt -mc 200 -fs 4242
ffuf -u https://TARGET/login -X POST \
-d "username=admin&password=FUZZ" \
-w passwords.txt -mc 200 -fc 401
ffuf -u https://FUZZ.TARGET.com -w subdomains.txt -mc 200,301,302
ffuf -u https://TARGET/api/FUZZ -w wordlist.txt \
-H "Authorization: Bearer <token>" \
-H "Cookie: session=<value>" \
-mc 200,201,403
-mc 200,301 — match HTTP status codes-fc 404,500 — filter (exclude) status codes-fs 4242 — filter by response size (removes noise)-fw 12 — filter by word count-fr "not found" — filter by regex in responseffuf -u https://TARGET/FUZZ -w wordlist.txt -o results.json -of json
-rate 100 to limit requests per second (avoid DoS)-t 40 to control thread count (default: 40)-fs-recursion -recursion-depth 2 for recursive discovery