Fixing the most common findings
The findings we see most on AI-built sites and the quickest fix for each.
# Fixing the most common findings
The findings we see most on fast-built sites, and the quickest fix for each.
## Missing security headers
HSTS, CSP, `X-Content-Type-Options`, `Referrer-Policy`. Add them at your
host/CDN edge or in your framework config. The finding's AI fix prompt lists the
exact set to add.
## Mixed content
An HTTPS page loading an HTTP asset (image, script, font). Switch the asset URL
to `https://`, or a protocol-relative `//`.
## Cookies without Secure / HttpOnly / SameSite
Set those flags on your session cookie. The AI fix prompt shows the exact
attributes for your framework.
## Form over HTTP / auth token in URL
Move the form to HTTPS, and put secrets in the request body or headers — never in
the query string, where they end up in logs and history.
## Weak SEO basics
A missing ``, no meta description, or zero / multiple `
Tags: fix, common findings, security headers, HTTPS, mixed content, cookies, CSRF, remediation, how do I fix