← スキル一覧に戻る

web-fuzzing
by ljchg12-hue
Claude Code CLI configuration with multi-AI orchestration and ABSOLUTE RULES enforcement
⭐ 0🍴 0📅 2026年1月16日
SKILL.md
name: web-fuzzing description: Web application security testing using fuzzing techniques to discover vulnerabilities, injection points, and edge cases
Web Fuzzing Skill
Automated security testing using fuzzing to discover web application vulnerabilities.
When to Use
- Security testing
- Vulnerability discovery
- Input validation testing
- API endpoint testing
Core Capabilities
- Parameter fuzzing
- Path traversal testing
- SQL injection detection
- XSS vulnerability scanning
- Command injection testing
- File upload vulnerabilities
- Authentication bypass attempts
Tools
# ffuf (Fast web fuzzer)
ffuf -u https://target.com/FUZZ -w wordlist.txt
# wfuzz
wfuzz -c -z file,wordlist.txt https://target.com/FUZZ
# Burp Suite Intruder
# SQLmap for SQL injection
sqlmap -u "https://target.com/page?id=1" --batch
# XSStrike
python xsstrike.py -u "https://target.com/search?q=test"
Fuzzing Patterns
- Path traversal:
../../../etc/passwd - SQL injection:
' OR '1'='1 - Command injection:
; ls -la - XSS:
<script>alert(1)</script>
Best Practices
- Get authorization before testing
- Use rate limiting
- Test in staging environment
- Document findings
- Follow responsible disclosure
Resources
- ffuf: https://github.com/ffuf/ffuf
- OWASP Testing Guide: https://owasp.org/www-project-web-security-testing-guide/
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です