🛠️ Webセキュリティテスト
Webアプリケーションのセキュリティを、OWASP Top 10脆弱性(インジェクション、XSS、認証不備、アクセス制御など)に基づいてテストし、安全性を確認するSkill。
📺 まず動画で見る(YouTube)
▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Web application security testing workflow for OWASP Top 10 vulnerabilities including injection, XSS, authentication flaws, and access control issues.
🇯🇵 日本人クリエイター向け解説
Webアプリケーションのセキュリティを、OWASP Top 10脆弱性(インジェクション、XSS、認証不備、アクセス制御など)に基づいてテストし、安全性を確認するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o web-security-testing.zip https://jpskill.com/download/3695.zip && unzip -o web-security-testing.zip && rm web-security-testing.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/3695.zip -OutFile "$d\web-security-testing.zip"; Expand-Archive "$d\web-security-testing.zip" -DestinationPath $d -Force; ri "$d\web-security-testing.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
web-security-testing.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
web-security-testingフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Web Security Testing を使って、最小構成のサンプルコードを示して
- › Web Security Testing の主な使い方と注意点を教えて
- › Web Security Testing を既存プロジェクトに組み込む方法を教えて
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Webセキュリティテストのワークフロー
概要
インジェクション攻撃、XSS、認証の不備、アクセス制御の問題など、OWASP Top 10の脆弱性に対してWebアプリケーションをテストするための専門的なワークフローです。
このワークフローを使用するタイミング
このワークフローは、以下の状況で使用してください。
- Webアプリケーションのセキュリティテストを行う場合
- OWASP Top 10の評価を実施する場合
- 侵入テストを実施する場合
- セキュリティ制御を検証する場合
- バグバウンティハンティングを行う場合
ワークフローのフェーズ
フェーズ1:偵察
呼び出すスキル
scanning-tools- セキュリティスキャンtop-web-vulnerabilities- OWASPの知識
アクション
- アプリケーションの表面をマッピングする
- テクノロジーを特定する
- エンドポイントを発見する
- サブドメインを見つける
- 発見事項を文書化する
コピー&ペーストプロンプト
Use @scanning-tools to perform web application reconnaissance
フェーズ2:インジェクションテスト
呼び出すスキル
sql-injection-testing- SQLインジェクションsqlmap-database-pentesting- SQLMap
アクション
- SQLインジェクションをテストする
- NoSQLインジェクションをテストする
- コマンドインジェクションをテストする
- LDAPインジェクションをテストする
- 脆弱性を文書化する
コピー&ペーストプロンプト
Use @sql-injection-testing to test for SQL injection
Use @sqlmap-database-pentesting to automate SQL injection testing
フェーズ3:XSSテスト
呼び出すスキル
xss-html-injection- XSSテストhtml-injection-testing- HTMLインジェクション
アクション
- 反射型XSSをテストする
- 格納型XSSをテストする
- DOMベースXSSをテストする
- XSSフィルターをテストする
- 発見事項を文書化する
コピー&ペーストプロンプト
Use @xss-html-injection to test for cross-site scripting
フェーズ4:認証テスト
呼び出すスキル
broken-authentication- 認証テスト
アクション
- クレデンシャルスタッフィングをテストする
- ブルートフォース保護をテストする
- セッション管理をテストする
- パスワードポリシーをテストする
- MFAの実装をテストする
コピー&ペーストプロンプト
Use @broken-authentication to test authentication security
フェーズ5:アクセス制御テスト
呼び出すスキル
idor-testing- IDORテストfile-path-traversal- パストラバーサル
アクション
- 垂直特権昇格をテストする
- 水平特権昇格をテストする
- IDORの脆弱性をテストする
- ディレクトリトラバーサルをテストする
- 不正アクセスをテストする
コピー&ペーストプロンプト
Use @idor-testing to test for insecure direct object references
Use @file-path-traversal to test for path traversal
フェーズ6:セキュリティヘッダー
呼び出すスキル
api-security-best-practices- セキュリティヘッダー
アクション
- CSPの実装を確認する
- HSTSの設定を検証する
- X-Frame-Optionsをテストする
- X-Content-Type-Optionsを確認する
- リファラーポリシーを検証する
コピー&ペーストプロンプト
Use @api-security-best-practices to audit security headers
フェーズ7:レポート作成
呼び出すスキル
reporting-standards- セキュリティレポート作成
アクション
- 脆弱性を文書化する
- リスクレベルを評価する
- 修正策を提供する
- 概念実証を作成する
- レポートを生成する
コピー&ペーストプロンプト
Use @reporting-standards to create security report
OWASP Top 10チェックリスト
- [ ] A01: アクセス制御の不備
- [ ] A02: 暗号化の失敗
- [ ] A03: インジェクション
- [ ] A04: 安全でない設計
- [ ] A05: セキュリティ設定のミス
- [ ] A06: 脆弱なコンポーネント
- [ ] A07: 認証の失敗
- [ ] A08: ソフトウェアとデータの整合性の不備
- [ ] A09: ロギングと監視の失敗
- [ ] A10: SSRF
品質ゲート
- [ ] すべてのOWASP Top 10がテスト済み
- [ ] 脆弱性が文書化済み
- [ ] 概念実証が取得済み
- [ ] 修正策が提供済み
- [ ] レポートが生成済み
関連ワークフローバンドル
security-audit- セキュリティ監査api-security-testing- APIセキュリティwordpress-security- WordPressセキュリティ
制限事項
- このスキルは、タスクが上記の範囲と明確に一致する場合にのみ使用してください。
- 出力を環境固有の検証、テスト、または専門家によるレビューの代わりとして扱わないでください。
- 必要な入力、権限、安全境界、または成功基準が不足している場合は、停止して説明を求めてください。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Web Security Testing Workflow
Overview
Specialized workflow for testing web applications against OWASP Top 10 vulnerabilities including injection attacks, XSS, broken authentication, and access control issues.
When to Use This Workflow
Use this workflow when:
- Testing web application security
- Performing OWASP Top 10 assessment
- Conducting penetration tests
- Validating security controls
- Bug bounty hunting
Workflow Phases
Phase 1: Reconnaissance
Skills to Invoke
scanning-tools- Security scanningtop-web-vulnerabilities- OWASP knowledge
Actions
- Map application surface
- Identify technologies
- Discover endpoints
- Find subdomains
- Document findings
Copy-Paste Prompts
Use @scanning-tools to perform web application reconnaissance
Phase 2: Injection Testing
Skills to Invoke
sql-injection-testing- SQL injectionsqlmap-database-pentesting- SQLMap
Actions
- Test SQL injection
- Test NoSQL injection
- Test command injection
- Test LDAP injection
- Document vulnerabilities
Copy-Paste Prompts
Use @sql-injection-testing to test for SQL injection
Use @sqlmap-database-pentesting to automate SQL injection testing
Phase 3: XSS Testing
Skills to Invoke
xss-html-injection- XSS testinghtml-injection-testing- HTML injection
Actions
- Test reflected XSS
- Test stored XSS
- Test DOM-based XSS
- Test XSS filters
- Document findings
Copy-Paste Prompts
Use @xss-html-injection to test for cross-site scripting
Phase 4: Authentication Testing
Skills to Invoke
broken-authentication- Authentication testing
Actions
- Test credential stuffing
- Test brute force protection
- Test session management
- Test password policies
- Test MFA implementation
Copy-Paste Prompts
Use @broken-authentication to test authentication security
Phase 5: Access Control Testing
Skills to Invoke
idor-testing- IDOR testingfile-path-traversal- Path traversal
Actions
- Test vertical privilege escalation
- Test horizontal privilege escalation
- Test IDOR vulnerabilities
- Test directory traversal
- Test unauthorized access
Copy-Paste Prompts
Use @idor-testing to test for insecure direct object references
Use @file-path-traversal to test for path traversal
Phase 6: Security Headers
Skills to Invoke
api-security-best-practices- Security headers
Actions
- Check CSP implementation
- Verify HSTS configuration
- Test X-Frame-Options
- Check X-Content-Type-Options
- Verify referrer policy
Copy-Paste Prompts
Use @api-security-best-practices to audit security headers
Phase 7: Reporting
Skills to Invoke
reporting-standards- Security reporting
Actions
- Document vulnerabilities
- Assess risk levels
- Provide remediation
- Create proof of concept
- Generate report
Copy-Paste Prompts
Use @reporting-standards to create security report
OWASP Top 10 Checklist
- [ ] A01: Broken Access Control
- [ ] A02: Cryptographic Failures
- [ ] A03: Injection
- [ ] A04: Insecure Design
- [ ] A05: Security Misconfiguration
- [ ] A06: Vulnerable Components
- [ ] A07: Authentication Failures
- [ ] A08: Software/Data Integrity
- [ ] A09: Logging/Monitoring
- [ ] A10: SSRF
Quality Gates
- [ ] All OWASP Top 10 tested
- [ ] Vulnerabilities documented
- [ ] Proof of concepts captured
- [ ] Remediation provided
- [ ] Report generated
Related Workflow Bundles
security-audit- Security auditingapi-security-testing- API securitywordpress-security- WordPress security
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.