First-quarter 2026 assessment of 200 apps
183 of 200 vibe-coded apps, 91.5 percent, contained at least one vulnerability traceable to AI hallucination or missing security context.
Finding
Another site can load your pages inside an invisible frame and trick a signed in visitor into clicking things they cannot see.
This week · About ten minutes
Response headers are written by nobody. Your framework does not add them, your builder does not add them, and your host adds one or two at most. They are the clearest example of a gap that no tool closes on your behalf, which is why almost every app built by a prompt ships without them.
Another site can load your pages inside an invisible frame and trick a signed in visitor into clicking things they cannot see.
GET https://example.com returned no strict-transport-security header
Every finding on a result carries a line like this one: the request that was made and the answer that came back. You can run the same request yourself and get the same answer, which is the point.
Add X-Frame-Options: DENY, or a frame-ancestors 'none' directive in your content policy.
Prompt for your coding agent
Set the X-Frame-Options response header to DENY, and add frame-ancestors 'none' to the Content-Security-Policy (use SAMEORIGIN and 'self' only if the app embeds itself) on every HTML response. It stops another site from loading this app inside an invisible frame to hijack clicks. Add it wherever this app sets response headers: the server framework, a middleware, or the hosting platform's headers configuration. Verify by requesting the page with curl -I.
A result gives you this prompt written for your builder, in its own dialect, and a batch prompt that carries every fix at once.
183 of 200 vibe-coded apps, 91.5 percent, contained at least one vulnerability traceable to AI hallucination or missing security context.
CVE entries attributed to AI-generated code rose from 6 in January 2026 to more than 35 in March 2026.
More than 2,000 vulnerabilities and more than 400 exposed secrets found across vibe-coded apps.
69 vulnerabilities across 15 apps built by five AI coding tools.
This page is the explanation of the finding. The free tool runs the same check on your own app and returns the evidence line.
Run the free Launch Risk Check on your app
ShipReady is not a penetration test or a security certification. No automated check can prove an application is secure.
Last updated September 20, 2026