security-review
認証の追加、ユーザー入力の処理、シークレットの取り扱い、APIエンドポイントの作成、または決済・機密性の高い機能の実装時に使用するスキル。包括的なセキュリティチェックリストとパターンを提供します。
description の原文を見る
Use this skill when adding authentication, handling user input, working with secrets, creating API endpoints, or implementing payment/sensitive features. Provides comprehensive security checklist and patterns.
SKILL.md 本文
セキュリティレビュースキル
このスキルは、すべてのコードがセキュリティのベストプラクティスに従い、潜在的な脆弱性がないことを保証します。
使用を開始するタイミング
- 認証または認可の実装
- ユーザー入力またはファイルアップロードの処理
- 新しい API エンドポイントの作成
- シークレットまたは認証情報の処理
- 支払い機能の実装
- 機密データの保存または送信
- サードパーティ API の統合
セキュリティチェックリスト
1. シークレット管理
失敗: 決してしてはいけないこと
const apiKey = "sk-proj-xxxxx" // Hardcoded secret
const dbPassword = "password123" // In source code
成功: 常にこのようにしてください
const apiKey = process.env.OPENAI_API_KEY
const dbUrl = process.env.DATABASE_URL
// Verify secrets exist
if (!apiKey) {
throw new Error('OPENAI_API_KEY not configured')
}
検証ステップ
- ハードコードされた API キー、トークン、パスワードがない
- すべてのシークレットは環境変数に設定
-
.env.localが .gitignore に含まれている - git 履歴にシークレットがない
- 本番環境のシークレットはホスティングプラットフォーム (Vercel、Railway) に設定
2. 入力検証
ユーザー入力を常に検証
import { z } from 'zod'
// Define validation schema
const CreateUserSchema = z.object({
email: z.string().email(),
name: z.string().min(1).max(100),
age: z.number().int().min(0).max(150)
})
// Validate before processing
export async function createUser(input: unknown) {
try {
const validated = CreateUserSchema.parse(input)
return await db.users.create(validated)
} catch (error) {
if (error instanceof z.ZodError) {
return { success: false, errors: error.errors }
}
throw error
}
}
ファイルアップロード検証
function validateFileUpload(file: File) {
// Size check (5MB max)
const maxSize = 5 * 1024 * 1024
if (file.size > maxSize) {
throw new Error('File too large (max 5MB)')
}
// Type check
const allowedTypes = ['image/jpeg', 'image/png', 'image/gif']
if (!allowedTypes.includes(file.type)) {
throw new Error('Invalid file type')
}
// Extension check
const allowedExtensions = ['.jpg', '.jpeg', '.png', '.gif']
const extension = file.name.toLowerCase().match(/\.[^.]+$/)?.[0]
if (!extension || !allowedExtensions.includes(extension)) {
throw new Error('Invalid file extension')
}
return true
}
検証ステップ
- すべてのユーザー入力がスキーマで検証されている
- ファイルアップロードが制限されている (サイズ、タイプ、拡張子)
- ユーザー入力がクエリで直接使用されていない
- ホワイトリスト検証を使用している (ブラックリストではなく)
- エラーメッセージが機密情報を漏らしていない
3. SQL インジェクション防止
失敗: SQL を連結してはいけない
// DANGEROUS - SQL Injection vulnerability
const query = `SELECT * FROM users WHERE email = '${userEmail}'`
await db.query(query)
成功: パラメータ化クエリを常に使用
// Safe - parameterized query
const { data } = await supabase
.from('users')
.select('*')
.eq('email', userEmail)
// Or with raw SQL
await db.query(
'SELECT * FROM users WHERE email = $1',
[userEmail]
)
検証ステップ
- すべてのデータベースクエリがパラメータ化クエリを使用している
- SQL に文字列連結がない
- ORM/クエリビルダーが正しく使用されている
- Supabase クエリが適切にサニタイズされている
4. 認証と認可
JWT トークン処理
// FAIL: WRONG: localStorage (vulnerable to XSS)
localStorage.setItem('token', token)
// PASS: CORRECT: httpOnly cookies
res.setHeader('Set-Cookie',
`token=${token}; HttpOnly; Secure; SameSite=Strict; Max-Age=3600`)
認可チェック
export async function deleteUser(userId: string, requesterId: string) {
// ALWAYS verify authorization first
const requester = await db.users.findUnique({
where: { id: requesterId }
})
if (requester.role !== 'admin') {
return NextResponse.json(
{ error: 'Unauthorized' },
{ status: 403 }
)
}
// Proceed with deletion
await db.users.delete({ where: { id: userId } })
}
行レベルセキュリティ (Supabase)
-- Enable RLS on all tables
ALTER TABLE users ENABLE ROW LEVEL SECURITY;
-- Users can only view their own data
CREATE POLICY "Users view own data"
ON users FOR SELECT
USING (auth.uid() = id);
-- Users can only update their own data
CREATE POLICY "Users update own data"
ON users FOR UPDATE
USING (auth.uid() = id);
検証ステップ
- トークンは httpOnly Cookie に保存されている (localStorage ではなく)
- 機密操作の前に認可チェックが実行されている
- Supabase で行レベルセキュリティが有効になっている
- ロールベースのアクセス制御が実装されている
- セッション管理がセキュアである
5. XSS 防止
HTML をサニタイズ
import DOMPurify from 'isomorphic-dompurify'
// ALWAYS sanitize user-provided HTML
function renderUserContent(html: string) {
const clean = DOMPurify.sanitize(html, {
ALLOWED_TAGS: ['b', 'i', 'em', 'strong', 'p'],
ALLOWED_ATTR: []
})
return <div dangerouslySetInnerHTML={{ __html: clean }} />
}
Content Security Policy
// next.config.js
const securityHeaders = [
{
key: 'Content-Security-Policy',
value: `
default-src 'self';
script-src 'self' 'unsafe-eval' 'unsafe-inline';
style-src 'self' 'unsafe-inline';
img-src 'self' data: https:;
font-src 'self';
connect-src 'self' https://api.example.com;
`.replace(/\s{2,}/g, ' ').trim()
}
]
検証ステップ
- ユーザー提供の HTML がサニタイズされている
- CSP ヘッダーが設定されている
- 検証されていない動的コンテンツがレンダリングされていない
- React の組み込み XSS 保護が使用されている
6. CSRF 対策
CSRF トークン
import { csrf } from '@/lib/csrf'
export async function POST(request: Request) {
const token = request.headers.get('X-CSRF-Token')
if (!csrf.verify(token)) {
return NextResponse.json(
{ error: 'Invalid CSRF token' },
{ status: 403 }
)
}
// Process request
}
SameSite Cookie
res.setHeader('Set-Cookie',
`session=${sessionId}; HttpOnly; Secure; SameSite=Strict`)
検証ステップ
- 状態変更操作に CSRF トークンがある
- すべての Cookie に SameSite=Strict が設定されている
- ダブルサブミット Cookie パターンが実装されている
7. レート制限
API レート制限
import rateLimit from 'express-rate-limit'
const limiter = rateLimit({
windowMs: 15 * 60 * 1000, // 15 minutes
max: 100, // 100 requests per window
message: 'Too many requests'
})
// Apply to routes
app.use('/api/', limiter)
負荷の高い操作
// Aggressive rate limiting for searches
const searchLimiter = rateLimit({
windowMs: 60 * 1000, // 1 minute
max: 10, // 10 requests per minute
message: 'Too many search requests'
})
app.use('/api/search', searchLimiter)
検証ステップ
- すべての API エンドポイントにレート制限がある
- 負荷の高い操作により厳しい制限がある
- IP ベースのレート制限
- ユーザーベースのレート制限 (認証済み)
8. 機密データ漏洩
ログ記録
// FAIL: WRONG: Logging sensitive data
console.log('User login:', { email, password })
console.log('Payment:', { cardNumber, cvv })
// PASS: CORRECT: Redact sensitive data
console.log('User login:', { email, userId })
console.log('Payment:', { last4: card.last4, userId })
エラーメッセージ
// FAIL: WRONG: Exposing internal details
catch (error) {
return NextResponse.json(
{ error: error.message, stack: error.stack },
{ status: 500 }
)
}
// PASS: CORRECT: Generic error messages
catch (error) {
console.error('Internal error:', error)
return NextResponse.json(
{ error: 'An error occurred. Please try again.' },
{ status: 500 }
)
}
検証ステップ
- パスワード、トークン、シークレットがログに含まれていない
- エラーメッセージがユーザーに対して汎用的である
- 詳細なエラーはサーバーログのみ
- スタックトレースがユーザーに公開されていない
9. ブロックチェーンセキュリティ (Solana)
ウォレット検証
import { verify } from '@solana/web3.js'
async function verifyWalletOwnership(
publicKey: string,
signature: string,
message: string
) {
try {
const isValid = verify(
Buffer.from(message),
Buffer.from(signature, 'base64'),
Buffer.from(publicKey, 'base64')
)
return isValid
} catch (error) {
return false
}
}
トランザクション検証
async function verifyTransaction(transaction: Transaction) {
// Verify recipient
if (transaction.to !== expectedRecipient) {
throw new Error('Invalid recipient')
}
// Verify amount
if (transaction.amount > maxAmount) {
throw new Error('Amount exceeds limit')
}
// Verify user has sufficient balance
const balance = await getBalance(transaction.from)
if (balance < transaction.amount) {
throw new Error('Insufficient balance')
}
return true
}
検証ステップ
- ウォレット署名が検証されている
- トランザクション詳細が検証されている
- トランザクション前の残高チェック
- ブラインド署名がない
10. 依存関係のセキュリティ
定期的な更新
# Check for vulnerabilities
npm audit
# Fix automatically fixable issues
npm audit fix
# Update dependencies
npm update
# Check for outdated packages
npm outdated
ロックファイル
# ALWAYS commit lock files
git add package-lock.json
# Use in CI/CD for reproducible builds
npm ci # Instead of npm install
検証ステップ
- 依存関係が最新である
- 既知の脆弱性がない (npm audit クリーン)
- ロックファイルがコミットされている
- GitHub で Dependabot が有効になっている
- 定期的なセキュリティ更新
セキュリティテスト
自動セキュリティテスト
// Test authentication
test('requires authentication', async () => {
const response = await fetch('/api/protected')
expect(response.status).toBe(401)
})
// Test authorization
test('requires admin role', async () => {
const response = await fetch('/api/admin', {
headers: { Authorization: `Bearer ${userToken}` }
})
expect(response.status).toBe(403)
})
// Test input validation
test('rejects invalid input', async () => {
const response = await fetch('/api/users', {
method: 'POST',
body: JSON.stringify({ email: 'not-an-email' })
})
expect(response.status).toBe(400)
})
// Test rate limiting
test('enforces rate limits', async () => {
const requests = Array(101).fill(null).map(() =>
fetch('/api/endpoint')
)
const responses = await Promise.all(requests)
const tooManyRequests = responses.filter(r => r.status === 429)
expect(tooManyRequests.length).toBeGreaterThan(0)
})
本番環境デプロイ前のセキュリティチェックリスト
本番環境へのデプロイの前に:
- シークレット: ハードコードされたシークレットがなく、すべてが環境変数にある
- 入力検証: すべてのユーザー入力が検証されている
- SQL インジェクション: すべてのクエリがパラメータ化されている
- XSS: ユーザーコンテンツがサニタイズされている
- CSRF: 対策が有効になっている
- 認証: 適切なトークン処理
- 認可: ロールチェックが導入されている
- レート制限: すべてのエンドポイントで有効になっている
- HTTPS: 本番環境で強制されている
- セキュリティヘッダー: CSP、X-Frame-Options が設定されている
- エラーハンドリング: エラーに機密データが含まれていない
- ログ記録: 機密データがログされていない
- 依存関係: 最新で脆弱性がない
- 行レベルセキュリティ: Supabase で有効になっている
- CORS: 適切に設定されている
- ファイルアップロード: 検証されている (サイズ、タイプ)
- ウォレット署名: 検証されている (ブロックチェーン使用時)
リソース
忘れずに: セキュリティはオプションではありません。1 つの脆弱性がプラットフォーム全体を危険にさらす可能性があります。不確実な場合は、慎重な側に偏ってください。
ライセンス: MIT(寛容ライセンスのため全文を引用しています) · 原本リポジトリ
詳細情報
- 作者
- affaan-m
- ライセンス
- MIT
- 最終更新
- 不明
Source: https://github.com/affaan-m/everything-claude-code / ライセンス: MIT
関連スキル
doubt-driven-development
重要な判断はすべて、本番環境への展開前に新しい視点から対抗的レビューを実施します。速度より正確性が重要な場合、不慣れなコードを扱う場合、本番環境・セキュリティに関わるロジック・取り消し不可の操作など影響度が高い場合、または後でバグを修正するよりも今検証する方が効率的な場合に活用してください。
apprun-skills
TypeScriptを使用したAppRunアプリケーションのMVU設計に関する総合的なガイダンスが得られます。コンポーネントパターン、イベントハンドリング、状態管理(非同期ジェネレータを含む)、パラメータと保護機能を備えたルーティング・ナビゲーション、vistestを使用したテストに対応しています。AppRunコンポーネントの設計・レビュー、ルートの配線、状態フローの管理、AppRunテストの作成時に活用してください。
desloppify
コードベースのヘルスチェックと技術負債の追跡ツールです。コード品質、技術負債、デッドコード、大規模ファイル、ゴッドクラス、重複関数、コードスメル、命名規則の問題、インポートサイクル、結合度の問題についてユーザーが質問した場合に使用してください。また、ヘルススコアの確認、次の改善項目の提案、クリーンアップ計画の作成をリクエストされた際にも対応します。29言語に対応しています。
debugging-and-error-recovery
テストが失敗したり、ビルドが壊れたり、動作が期待と異なったり、予期しないエラーが発生したりした場合に、体系的な根本原因デバッグをガイドします。推測ではなく、根本原因を見つけて修正するための体系的なアプローチが必要な場合に使用してください。
test-driven-development
テスト駆動開発により実装を進めます。ロジックの実装、バグの修正、動作の変更など、あらゆる場面で活用できます。コードが正常に動作することを証明する必要がある場合、バグ報告を受けた場合、既存機能を修正する予定がある場合に使用してください。
incremental-implementation
変更を段階的に実施します。複数のファイルに影響する機能や変更を実装する場合に使用してください。大量のコードを一度に書こうとしている場合や、タスクが一度では完結できないほど大きい場合に活用します。