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.