Web App Security Checklist
Pre-deployment security checklist: CSP, CORS, authentication tokens, password hashing, and security headers.
このレシピの使いどころ
Never deploy without this security checklist. Covers the top 10 security configurations that prevent the most common web application attacks.
ステップ
CSP Generator
このツールを試す →Production CSP
CSP Evaluator
このツールを試す →Verify CSP quality
CORS Generator
このツールを試す →Production CORS
Security Header Checker
このツールを試す →Full header check
Secret Generator
このツールを試す →Generate production secrets
SRI Hash Generator
このツールを試す →Lock down CDN resources
よくある質問
What are the most common security oversights?
Missing CSP (allows XSS), no rate limiting (enables brute force), exposed error details (information leak), default CORS (allows any origin), and plain-text secrets in config.
Should I hire a penetration tester?
Yes, for production applications handling user data. Automated scanning catches ~60% of issues. Manual pen testing catches logic flaws, business logic vulnerabilities, and complex attack chains.
関連レシピ
Secure Password Workflow
Generate a strong password, verify its strength, and hash it for storage — a complete password security pipeline.
Web Security Header Audit
Audit your website's security headers, generate a CSP policy, evaluate it, and configure CORS.
JWT Authentication Setup
Set up JWT-based authentication: generate tokens, create signing keys, and implement TOTP for 2FA.
API Security Hardening
Harden your API with HMAC request signing, secure secrets, and SRI for client-side integrity.