Clearview's unreleased AI tool was in its login page
WIRED found Clearview AI's unannounced InquiryIQ profiling tool in code served to every visitor before sign-in. Your frontend bundle is a public document.
WIRED reported on September 10 that Clearview AI has been testing an unannounced AI tool called InquiryIQ — and that reporters found it in code Clearview's login page ships to every visitor's browser, before anyone signs in. There are two stories here. One is about surveillance. The other is about your frontend bundle, and it is the one you can do something about this afternoon.
What actually happened
InquiryIQ is an assistant that picks up where a facial recognition match ends. Per reporting summarized by Biometric Update, it browses the open web, runs image searches and secondary face searches, and assembles a "Candidate Graph" of possible employers, aliases, associates, addresses, phone numbers, social accounts, and arrest history. Its interface tells investigators that supplying age, gender, and race helps it make better decisions. One model Clearview tested for that reasoning came from xAI.
Clearview told WIRED that police have never used InquiryIQ, that it was never pitched or shipped, and that there are no plans to release the current version.
Now the part relevant to anyone shipping software. This was not a leak, a breach, or a disgruntled insider. It was JavaScript. An unreleased, politically radioactive product surfaced because its strings and routes rode along in the bundle served at the login screen — the one URL a company least wants strangers poking at, handed to every stranger who loads it.
Why your frontend bundle matters for your business
Everything your browser downloads is public. Not "public if someone is determined" — public. Minification is not obfuscation, and an unshipped feature flag named enable_pricing_v3_enterprise tells a competitor exactly what is coming. We have found live API keys, internal hostnames, admin-only route tables, and half-built acquisition features in client bundles we inherited, none of it behind a login, all of it one view-source away.
Go look at yours today. Open your production app, pull the main JS chunk, and search it for the names of things you have not announced. Search for key, secret, token, internal, admin, staging. Check whether source maps are being served in production — most teams ship them by accident and hand attackers the original, commented source.
Then fix the pattern, not the instance. Unreleased features get gated on the server, where the client never learns they exist, instead of being shipped and hidden with a CSS class. Admin routes live in a separate bundle behind an authenticated boundary. Secrets stay server-side, always, because anything in a NEXT_PUBLIC_ or VITE_ variable is a press release. Your login page is the most-loaded file you own. Treat it like the front window it is.
Key takeaways
- WIRED found Clearview AI's unannounced InquiryIQ profiling tool in code served from its login page to every visitor
- InquiryIQ builds a profile - employers, aliases, associates, addresses, arrest history - from a facial recognition match, using an xAI model
- Clearview says police never used it and it has no plans to release the current version
- Minified JavaScript is not private: feature names, routes, and secrets in a bundle are public
- Audit your production bundle for unannounced feature flags, internal hostnames, and leaked keys - and check whether source maps are served
- Gate unreleased features server-side and split admin routes into a separate authenticated bundle
We audit what your app hands to strangers. Bundle contents, source maps, exposed env vars, admin routes shipped to logged-out visitors - we find them and move them behind the server boundary. Ask us to look at your production bundle, or see how we build front ends that keep secrets.
Sources: Biometric Update: Clearview AI prototype points to next phase of facial recognition, reporting first published by WIRED on September 10, 2026.
- #frontend-security
- #clearview-ai
- #javascript-bundle
- #privacy
- #ai-agents
Tommy Rush — Founder, Rush Commerce
Operator turned builder. 15+ years running operations — now shipping the systems businesses run on. More
Get The Rush Report weekly — one email, zero fluff.
Keep reading
Alibaba backs an AI model testing lab at $2.5B
Alibaba is reportedly leading a $300M round in UniPat AI at a $2.5B valuation. Grading models is now a business - but your acceptance test is still yours.
Read itShieldCrash: Microsoft's Defender patch got bypassed again
A new PoC reads arbitrary files as SYSTEM on fully patched Windows after September's update. Third Defender escalation in the same chain since June.
Read it