Web App Security Checklist
Pre-deployment security checklist: CSP, CORS, authentication tokens, password hashing, and security headers.
Wann dieses Rezept verwenden
Never deploy without this security checklist. Covers the top 10 security configurations that prevent the most common web application attacks.
Schritte
CSP Generator
Dieses Werkzeug ausprobieren →Production CSP
CSP Evaluator
Dieses Werkzeug ausprobieren →Verify CSP quality
CORS Generator
Dieses Werkzeug ausprobieren →Production CORS
Security Header Checker
Dieses Werkzeug ausprobieren →Full header check
Secret Generator
Dieses Werkzeug ausprobieren →Generate production secrets
SRI Hash Generator
Dieses Werkzeug ausprobieren →Lock down CDN resources
Häufig gestellte Fragen
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.
Verwandte Rezepte
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.