A source scan proves your code is fine. It says nothing about what the bundler inlined, what the CDN stripped, or which old library version actually shipped. The Live Site Auditor fetches your deployed site from your own machine and reconciles it against source, then hands you two verdicts: secure to ship, and found by Google. The Live Site Auditor is part of IOnclad Pro.
This is the Pro, desktop-only half of the auditor. It does a native HTTP GET of your public deployed URL from your machine (no IOnclad server is ever in the loop), parses what comes back, and turns each signal into a finding that sits next to your local source results. The fetch is SSRF-guarded, runs only after you opt in to online checks, and degrades to a clean source-only report if anything fails.
The gap between what you wrote and what got served is where the worst pre-launch surprises live. Four of them:
You set a server key in an env var. The bundler inlined it into the client JS anyway, because it wasn't prefixed the way your framework requires, or because process.env.X got shipped to the browser. Now anyone can open devtools, read the bundle, and lift a live credential. Source review never sees it, because in source it looks like an env reference.
Your config sets a Content-Security-Policy, HSTS, and frame protection. Your proxy or CDN tier silently drops them in production. You think you're protected because the code says so. The browser disagrees. This drift is invisible until something fetches the real response.
Your lockfile might be patched. The deployed bundle might still be an old jQuery or a library with a public CVE, because the build cache was stale or a vendored copy never got bumped. What runs in the user's browser is the thing that matters, and that's the thing this checks.
No SPF, no DMARC, no DKIM means anyone can send mail that claims to be from your domain. Your password resets land in spam and your phishing risk is wide open. None of that is in your repo. It's in your DNS.
"It passed the source scan" is not the same as "it's safe in production." A non-prefixed key the bundler inlined reads as a clean env reference in your code and as a downloadable secret in the deployed bundle. Only fetching the real site catches it.
The classic vibe-coded deploy mistake looks like this:
# In source: looks like a normal env reference, passes review const client = new Sdk({ key: process.env.SERVICE_SECRET }); # But the var was named SERVICE_SECRET, not VITE_/NEXT_PUBLIC_-safe, # and the bundler inlined the literal value into the shipped chunk: var client=new Sdk({key:"sk_live_9f3...redacted...8a"}); // in app.4f21.js # curl your own deployed bundle and the key is right there, # downloadable by anyone who views source.
The auditor runs your local source scan first (always offline), then runs the live half against the page it fetched and merges both sets:
.git or .env, an exposed API schema, missing security.txt, plus a native TLS handshake inspection.IOnclad finds known patterns and common misconfigurations. It is not a guarantee or a full pentest, and the LaunchGuard intake is advisory, not legal advice.
.git, .env, and internal schemas are not publicly reachable on the deployed host.Scan your code and full git history in under a minute. Free verdict, no signup, nothing leaves your machine.