What problem does it solve? Web applications missing HTTP security headers like Content-Security-Policy or Strict-Transport-Security are exposed to XSS, clickjacking, and man-in-the-middle attacks, and manually auditing each framework's configuration is error-prone. ## Core Features & Use Cases - Header Auditing: Checks seven security headers (CSP, HSTS, X-Content-Type-Options, X-Frame-Options, Referrer-Policy, Permissions-Policy, X-XSS-Protection) and ranks missing ones by severity from HIGH to LOW. - Framework Detection: Locates header configuration in Next.js next.config.js or middleware.ts, Laravel SecurityHeaders middleware, Express helmet, and Django SECURE_* settings. - Config Generation: Produces framework-specific fixes with ready-to-use code templates for each detected stack. - Use Case: Before deploying a Next.js app, run an audit to discover HSTS and CSP are missing, then apply the generated next.config.js headers block to close the gaps. ## Quick Start Audit the HTTP security headers of this web application and generate the missing configuration for its framework.