ToolypetMCP
advanced8 minutessecurity

Web App Security Checklist

Pre-deployment security checklist: CSP, CORS, authentication tokens, password hashing, and security headers.

checklistdeploymentsecuritypre-launch

इस रेसिपी का उपयोग कब करें

Never deploy without this security checklist. Covers the top 10 security configurations that prevent the most common web application attacks.

चरण

1

Production CSP

प्रॉम्प्ट:Generate production CSP with strict directives, nonce-based script-src, and upgrade-insecure-requests
2

Verify CSP quality

प्रॉम्प्ट:Evaluate the CSP for A+ grade and zero unsafe directives
3

Production CORS

प्रॉम्प्ट:Generate strict CORS: specific origins only, no wildcards, credentials allowed only for auth endpoints
4

Full header check

प्रॉम्प्ट:Verify all OWASP-recommended headers are present and correctly configured
5

Generate production secrets

प्रॉम्प्ट:Generate production-grade secrets: JWT key, session secret, CSRF token secret
6

Lock down CDN resources

प्रॉम्प्ट:Generate SRI hashes for all third-party scripts and stylesheets loaded from CDN

अक्सर पूछे जाने वाले प्रश्न

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.

संबंधित रेसिपी