
Google patched Chrome’s fifth actively-exploited zero-day of 2026 on June 8. CVE-2026-11645 is an out-of-bounds memory access in V8 — Chrome’s JavaScript engine — that lets an attacker run arbitrary code inside your browser sandbox just by loading a crafted webpage. CISA added it to the Known Exploited Vulnerabilities catalog the following day and ordered federal agencies to patch by June 23. Most developer machines are still running vulnerable versions.
What CVE-2026-11645 Actually Does
V8 is the engine that compiles and executes every line of JavaScript in your browser tabs. CVE-2026-11645 exploits an out-of-bounds read/write — the engine can be tricked into accessing memory outside the boundaries it’s supposed to operate within. A malicious actor delivers a crafted HTML page, your browser’s renderer process parses and executes the JavaScript, and the memory corruption gives the attacker code execution primitives inside Chrome’s sandbox.
No download required. No plugin. Just a link. The anonymous researcher who found it reported it on April 27 and received a $55,000 bug bounty. Google took 42 days to ship the fix — during which the exploit was already circulating. The patched versions are 149.0.7827.102 or 149.0.7827.103 for Windows and macOS, and 149.0.7827.102 for Linux. Help Net Security has the full patch breakdown.
Developers Are a High-Value Target Here
Browser zero-days are often framed as a consumer problem. That framing is backwards for anyone who writes code for a living. Developers run untrusted JavaScript constantly: web-based IDEs, CI/CD dashboards (Jenkins, CircleCI, GitHub’s web UI), npm package documentation pages, internal tooling. Every open tab is a renderer process with its own V8 instance.
Developer machines also hold SSH keys, AWS credentials, API tokens, private repositories, and secrets managers. The sandbox is the only barrier between a crafted webpage and those assets. A sandbox escape — which out-of-bounds exploits can enable — removes that barrier entirely.
Five Zero-Days in Six Months Is a Pattern, Not a Fluke
CVE-2026-11645 is not an isolated incident. Here are all five Chrome zero-days exploited in the wild so far in 2026, per The Hacker News:
- CVE-2026-2441 (February): Use-after-free in CSS
- CVE-2026-3909 (March): Out-of-bounds write in Skia, Chrome’s 2D graphics library
- CVE-2026-3910 (March): Inappropriate implementation in V8
- CVE-2026-5281 (April): Use-after-free in Dawn, Chrome’s WebGPU implementation
- CVE-2026-11645 (June): Out-of-bounds access in V8
That’s one exploited zero-day every 5.5 weeks on average. Chrome’s attack surface — V8 alone powers billions of devices — is under sustained, active research from threat actors who have clearly decided the browser is worth the investment. Treating each CVE as a one-off event misses the larger trend.
The Real Problem: Your Patch Workflow Was Already Broken
Google shipped the fix on June 8. CISA mandated patching by June 23 for federal agencies. That deadline has passed. But most enterprise environments run Chrome Extended Stable, which formalizes an eight-week lag per version. In practice, many developer machines lag even longer — IT policies, testing cycles, manual approval chains.
Meanwhile, the exploitation window has compressed to roughly five days. Google Threat Intelligence Group data shows that 55% of zero-days tracked in 2025 were exploited within one week of disclosure. Nearly 29% were exploited on or before the day the CVE was published. The patch arrives long after the attack window opens.
Chrome is moving to a two-week release cycle starting September 2026, but the enterprise Extended Stable channel stays at eight weeks. Faster releases do not close the gap if enterprises don’t treat actively-exploited CVEs as emergencies requiring immediate action.
What to Do Right Now
Open Chrome and navigate to chrome://settings/help. You need version 149.0.7827.102 or higher. If Chrome is behind, let it update, then fully restart the browser — the update does not apply until Chrome restarts completely, not just until you close a tab.
Linux users running Chromium from a distribution package repository face an additional delay. Check your distro’s security advisory feed or switch to Google’s official repository to receive patches when Google ships them, not when your distro maintainers package them.
For enterprise IT and DevOps teams: zero-day patches should not wait for the Extended Stable cycle. Build an emergency patch track specifically for CISA KEV entries. This CVE is on that list. Treat browser updates the same way you treat a critical OS patch — not the same way you treat a feature release.
Your Browser Is Production Infrastructure
CVE-2026-11645 will be patched on most machines eventually. The next Chrome zero-day will arrive in roughly another six weeks. The problem is not any single CVE — it is a patch workflow designed for a world where exploitation takes months, not days. That world is gone. Five zero-days in six months is the new baseline for Chrome. Adjust your workflow accordingly.













