reviewing-security

OWASP API Security Top 10 (2023) と Rust セキュリティベストプラクティス。脆弱性検出。Use when: セキュリティ、脆弱性、OWASP、認証、認可、監査を依頼された時。

$ 安裝

git clone https://github.com/ryuichi1208/dotfiles /tmp/dotfiles && cp -r /tmp/dotfiles/mac/claude/skills/reviewing-security ~/.claude/skills/dotfiles

// tip: Run this command in your terminal to install the skill


name: reviewing-security description: "OWASP API Security Top 10 (2023) と Rust セキュリティベストプラクティス。脆弱性検出。Use when: セキュリティ、脆弱性、OWASP、認証、認可、監査を依頼された時。"

セキュリティレビュー

OWASP API Security Top 10 (2023) と Rust セキュリティベストプラクティスに基づくレビュースキル。

OWASP チェック項目

IDリスクチェック内容
API1BOLAtenant_id 検証、file_id との組み合わせ検証
API2Broken AuthgRPC メタデータ認証
API3Propertyレスポンスの不要情報
API4Resourceファイルサイズ制限、ページネーション

Rust セキュリティ

項目検索パターン
依存関係脆弱性cargo audit
unsafe コードgrep -rn "unsafe {" src/
ハードコード認証情報grep -rn "(password|secret|api_key)" src/