CISA Warns Google Chromium Zero-Day CVE-2026-11645 Exploited
CISA issued an urgent warning on June 9, 2026 about a newly discovered Google Chromium zero-day that is actively being exploited in the wild. The vulnerability, tracked as CVE-2026-11645, targets the V8 JavaScript engine at the heart of every Chromium-based browser. It allows attackers to execute arbitrary code within the browser sandbox simply by convincing a user to visit a specially crafted malicious HTML page. No login. No file download. No extra clicks. Just a webpage.
This Google Chromium zero-day falls under two critical memory corruption classifications: CWE-787 (Out-of-Bounds Write) and CWE-125 (Out-of-Bounds Read). Both are the most commonly exploited bug classes in browser security, routinely used as stepping stones toward full system compromise when chained with a sandbox escape vulnerability. CISA confirmed active exploitation, adding CVE-2026-11645 to its Known Exploited Vulnerabilities catalog on June 9, 2026, and directing all Federal Civilian Executive Branch agencies to patch by June 23, 2026.
The impact of this Google Chromium zero-day does not stop at Chrome. Chromium is the engine powering Microsoft Edge, Opera, Brave, Vivaldi, Samsung Internet, and a wide range of embedded runtimes inside Electron-based desktop applications. Every one of these browsers and runtimes carries the same underlying V8 vulnerability until individually patched. Your endpoint fleet has a much wider Chromium exposure than Chrome alone.
Google patched CVE-2026-11645 in Chrome stable channel version 149.0.7827.102 and 149.0.7827.103. This update ships 74 total security fixes including 17 critical severity vulnerabilities. If your organization has not yet deployed this update across all Chromium-based browsers and runtimes, your endpoints are a live drive-by exploitation target right now.
What Is the Google Chromium Zero-Day CVE-2026-11645
The Google Chromium zero-day CVE-2026-11645 is a high-severity out-of-bounds memory read and write vulnerability in Chrome's V8 JavaScript engine. V8 is the core component responsible for processing and executing JavaScript in every Chromium-based browser. Because V8 runs untrusted JavaScript from every website a user visits by design, a vulnerability in V8 is directly reachable by any attacker who can serve malicious JavaScript to a target's browser.
An out-of-bounds memory access in V8 allows an attacker to read or write memory outside the intended buffer during JavaScript execution. Through a carefully crafted HTML page delivering malicious JavaScript, the attacker triggers this condition inside the browser's renderer process. The result is memory corruption that can be used to establish code execution primitives within the sandbox.
CVE-2026-11645 at a glance:
- CVE ID: CVE-2026-11645
- Severity: High
- CWE Classifications: CWE-787 Out-of-Bounds Write, CWE-125 Out-of-Bounds Read
- Vulnerable Component: V8 JavaScript engine in Google Chrome and all Chromium-based browsers
- Attack Vector: Remote, no authentication required
- Trigger: Visiting a specially crafted malicious HTML page
- Active Exploitation: Confirmed by Google and CISA as of June 9, 2026
- No Ransomware Campaign Confirmed: CISA noted no confirmed ransomware campaign at time of advisory, but active exploitation is confirmed
- Reported By: Anonymous researcher, handle 303f06e3, April 27, 2026
- Bug Bounty: $55,000, reflecting high exploitation severity assessment
- CISA KEV Added: June 9, 2026
- Federal Patching Deadline: June 23, 2026 under BOD 22-01
- Fixed In: Chrome 149.0.7827.102 for Linux, 149.0.7827.102 and 149.0.7827.103 for Windows and Mac
- Sandbox Escape Assessment: Sophisticated actors likely chain CVE-2026-11645 with additional exploits to escape the sandbox and compromise the host system
The $55,000 bug bounty reward signals exactly how seriously Google assessed this flaw. Google's bounty program reserves awards at this level for vulnerabilities with clear and practical exploitation paths. The anonymous researcher who discovered it reported it responsibly through Google's program on April 27, 2026, roughly six weeks before the patched release.
Why V8 Is the Most Valuable Browser Attack Surface
To understand why the Google Chromium zero-day in V8 is so dangerous, security teams need to understand what makes V8 the premier browser attack target for sophisticated threat actors.
V8 processes untrusted code from every website by design.
Every tab in Chrome runs a V8 JavaScript engine instance executing JavaScript fetched from a web server controlled by whoever owns that domain. There is no whitelist of trusted JavaScript sources. Every website's JavaScript runs through the same engine. This means an attacker needs only to serve malicious JavaScript to a victim's browser to reach the vulnerable code path. No phishing attachment. No executable download. Any controlled web page will do.
V8 has deep access to browser heap memory.
During JIT compilation and execution, V8 allocates and manages large regions of heap memory. An out-of-bounds write in V8 can corrupt adjacent heap objects, potentially including objects belonging to other browser components. An out-of-bounds read can leak heap addresses, defeating address space layout randomization. Together these two primitives form the foundation of most modern browser exploitation chains.
V8 vulnerabilities chain directly with sandbox escape bugs.
Chromium's renderer process runs inside a security sandbox that restricts access to the host operating system. An attacker with code execution inside the renderer sandbox has significant capability but cannot yet read files, install persistence, or communicate outside browser-controlled channels without escaping the sandbox. CVE-2026-11645 provides the renderer execution primitive. A second sandbox escape vulnerability, which SecurityWeek assessed as likely being chained with this zero-day, completes the path to full host system compromise. The victim visits a webpage and the attacker gains complete control of their machine.
The Full Chrome 149 Update: 74 Fixes and What They Mean
The June 9, 2026 Chrome 149 update is the most significant Chrome security release of 2026. Security teams need to understand the full scope of what it patches because CVE-2026-11645 is not the only serious vulnerability addressed.
The update ships 74 security fixes including 17 critical severity vulnerabilities. The overwhelming majority are use-after-free defects. Use-after-free is the most persistent class of memory corruption vulnerability in browser security. It occurs when a program continues using a memory pointer after the referenced memory has already been freed, allowing attackers to manipulate the reused memory region to redirect execution.
Key additional vulnerabilities in Chrome 149:
- Use-after-free defects across multiple components including Bluetooth, Ozone, Aura, Views, and core rendering and UI frameworks
- CVE-2026-11662: Type Confusion in Bindings, a class of vulnerability commonly chained in browser exploit sequences
- CVE-2026-11688: Object Lifecycle Issue in SVG, another class routinely exploited in browser attack chains
- CVE-2026-11640 and CVE-2026-11655: Integer overflows in libyuv and Media
- CVE-2026-11678: Integer overflow in Media components
- CVE-2026-11672: Out-of-bounds write in GPU
The origin of the 74 fixes tells its own story.
The vast majority of the additional vulnerabilities in this update were discovered by Google's own security teams in a concentrated internal audit between May 25 and May 30, 2026. A five-day internal research sprint producing this volume of critical and high-severity findings indicates that Google had strong intelligence suggesting this code area required urgent scrutiny. Whether that intelligence came from threat actor activity signals, prior vulnerability analysis flagging adjacent code areas, or a new internal tooling capability, the outcome is one of the most security-critical Chrome releases in 2026.
The 2026 Chrome Zero-Day Pattern: Five Exploits in Six Months
This Google Chromium zero-day is the fifth Chrome zero-day patched in 2026. Understanding the full pattern is essential for security teams building their browser risk posture and patching cadence.
CVE-2026-2441 — First Chrome zero-day of 2026 (February 17, 2026): A use-after-free condition in Chromium's CSS handling engine causing heap corruption. Exploited via specially crafted HTML pages. CISA added it to the KEV catalog immediately. Affected all Chromium-based browsers.
CVE-2026-5281 — Fourth Chrome zero-day of 2026 (April 1, 2026): A use-after-free vulnerability in Dawn, the cross-platform WebGPU implementation used across Chromium-based browsers. Triggered crashes, data corruption, and rendering issues. Fixed in Chrome version 146.0.7680.177 and 146.0.7680.178 for Windows and Mac.
CVE-2026-11645 — Fifth Chrome zero-day of 2026 (June 9, 2026): The current active Google Chromium zero-day. Out-of-bounds read and write in V8 with confirmed in-the-wild exploitation. Fixed in Chrome 149.0.7827.102 and 149.0.7827.103.
What five zero-days in six months confirms:
Five confirmed Chrome zero-days by June 2026 is not coincidence. It is a sustained, deliberate targeting pattern. Sophisticated threat actors have made significant research investments in Chromium memory corruption vulnerabilities because browsers are the most universally deployed, permanently internet-facing, execution-capable application in any enterprise environment. Every endpoint in your organization runs a browser. That browser executes untrusted code from every website an employee visits. The investment in Chromium exploitation research reflects exactly this calculus.
Why the Google Chromium Zero-Day Matters Beyond Chrome
One of the most underappreciated aspects of the Google Chromium zero-day CVE-2026-11645 is how far its exposure extends beyond the Chrome browser binary itself. Security teams that patch Chrome promptly and consider the job done are likely still exposed.
Every Chromium-based browser carries CVE-2026-11645 until individually patched:
- Microsoft Edge uses the Chromium engine and has its own separate patching cycle from Google's Chrome releases. Edge users are vulnerable until Microsoft ships the corresponding Chromium update in Edge
- Brave, Opera, Vivaldi, and other Chromium-based browsers have their own release schedules and may lag Chrome's emergency update by days or more
- Samsung Internet on Android devices uses Chromium and patches through Samsung's own security update cycle
Electron-based desktop applications are the hidden exposure:
Electron is a framework that allows developers to build desktop applications using web technologies with an embedded Chromium runtime. Many of the most widely deployed enterprise applications are built on Electron. Each of these applications embeds its own Chromium version independent of the Chrome browser installed on the same machine. Patching Chrome does not update the Chromium runtime embedded inside an Electron application.
Common enterprise Electron applications that may carry a vulnerable Chromium version until their developers ship updates include productivity, communication, development environment, and project management tools that use the Electron framework. Security teams must audit every Electron-based application in their environment separately from the Chrome browser patching effort.
The practical implication:
An organization that deploys Chrome 149.0.7827.102 across its entire fleet within 24 hours of the advisory may still have dozens of vulnerable Chromium runtimes running on those same endpoints through unpatched Electron applications and non-Chrome browsers. The Google Chromium zero-day attack surface requires a full Chromium runtime inventory, not just a Chrome version check.
Why the Google Chromium Zero-Day Matters for Enterprise Security
No credentials and no user action beyond a single webpage visit. The attack model for CVE-2026-11645 is the simplest possible for an enterprise attacker. Serve malicious JavaScript. Wait for a victim to visit. Execute code in their browser. There is no phishing lure to detect, no malicious attachment to scan, and no suspicious file execution to alert on. The user's normal browsing behavior is the attack vector.
Two enterprise-specific delivery mechanisms amplify the risk:
The first is watering hole attacks. Threat actors compromise legitimate websites frequently visited by employees in a target industry or organization. Finance teams visiting industry news sites, developers visiting documentation pages, or executives visiting business publications can all trigger the exploit through completely normal work activity on legitimate trusted sites.
The second is malvertising. Malicious advertising networks deliver exploit payloads through ad creatives embedded on legitimate, high-traffic websites. The user does not click the ad. The browser renders the malicious ad creative and the exploit fires. Standard web filtering controls that allow reputable websites through are not effective against malvertising because the malicious content originates from ad networks, not the host website's own servers.
Session token and credential theft from the compromised renderer:
At the moment a browser renderer is compromised, it contains authenticated session tokens for every web application the user has open in that browser. This includes corporate email, SaaS platforms, cloud administration consoles, internal web applications, and any password manager running as a browser extension. An attacker who achieves renderer code execution has immediate access to all of these sessions without needing to steal a single password.
Regulatory exposure:
Any personal data or regulated information accessible through a compromised browser session at the time of exploitation creates breach notification obligations under GDPR, HIPAA, PCI-DSS, and equivalent frameworks. Browser session compromise is difficult to detect forensically, meaning organizations may face regulatory uncertainty about what data was accessed without clear log evidence of session token misuse.
Five Real-World Attack Scenarios
Scenario 1: Watering Hole Attack via Compromised Industry News Site
A threat actor compromises a widely read cybersecurity industry news website and injects JavaScript exploit code targeting CVE-2026-11645 into article pages. Security professionals visiting the site during their workday trigger the exploit silently. The renderer compromise escalates to full host compromise via sandbox escape. The attacker establishes persistent access on security analyst workstations, gaining access to threat intelligence platforms, SIEM consoles, and incident response tooling. Multiple organizations' security operations are compromised through a single watering hole over four days before the injection is discovered.
Scenario 2: Malvertising Campaign Across Legitimate Business News Sites
A malicious actor purchases display advertising on three major legitimate business news platforms. The ad creative delivers malicious JavaScript targeting CVE-2026-11645 in any unpatched Chromium browser that renders the ad. Over a 72-hour window before the ad networks detect and remove the malicious creatives, over a thousand enterprise endpoints are compromised. Infostealer payloads harvest session tokens for corporate Microsoft 365, Salesforce, and cloud administration consoles from compromised browser processes.
Scenario 3: Electron Application Exploitation After Chrome Is Patched
An enterprise deploys Chrome 149.0.7827.102 to all endpoints within 48 hours of the advisory. Security leadership marks the Chrome zero-day risk as remediated. A threat actor identifies that a widely deployed internal Electron application in the organization embeds a Chromium runtime still vulnerable to CVE-2026-11645. The application renders external web content in a frame for certain features. The attacker delivers the exploit through that feature, achieving code execution through the unpatched embedded runtime on fully Chrome-patched endpoints.
Scenario 4: Targeted Drive-By Against Executive Browsing Profile
A sophisticated threat actor profiles a senior executive's online activity through open-source intelligence. They identify a personal finance website the executive regularly visits and compromise a single article page. The executive visits the page during their workday on a corporate laptop. The CVE-2026-11645 exploit fires, achieving full host compromise after sandbox escape. The attacker accesses the executive's corporate email, calendar, and cloud storage accounts through active browser sessions. The compromise is not detected for 11 days.
Scenario 5: Microsoft Edge Targeted After Chrome Patching
An organization patches Chrome rapidly but Edge is used by operational teams for legacy internal web applications incompatible with Chrome. Edge is running a version that does not yet include the CVE-2026-11645 Chromium fix from Microsoft's release cycle. A threat actor aware of this gap specifically targets the organization's Edge users through a compromised vendor portal the operational team visits regularly. Edge users are compromised while the organization's Chrome-focused patching effort provides them no protection.
Detection and Monitoring for the Google Chromium Zero-Day
Detecting exploitation of the Google Chromium zero-day requires endpoint behavioral detection tuned specifically for browser process abuse, not just web gateway filtering. Here is your complete detection framework.
Logging and Monitoring Requirements
- Enable Chrome Browser Cloud Management or equivalent enterprise browser management to maintain real-time browser version inventory across all endpoints and alert on any instance below 149.0.7827.102
- Deploy Sysmon with configuration capturing all child process creation events from Chrome, Edge, and Brave executables including full command-line parameters
- Enable DNS query logging on all endpoints to identify unusual domains contacted by browser processes after page loads
- Capture outbound network flow data from browser processes to detect post-exploitation C2 callback attempts outside normal browser telemetry and update traffic
- Enable Windows Security Event Log process creation (Event ID 4688) with full command-line parameters across the entire endpoint fleet
EDR Rules to Activate Immediately
- Alert on Chrome, Edge, or Brave browser processes spawning cmd.exe, powershell.exe, wscript.exe, or any command execution utility as a child process, a direct sandbox escape indicator
- Detect process injection from browser child processes into non-browser system processes
- Flag unexpected DLL loading into browser processes from outside standard browser installation paths
- Alert on browser processes writing executable files to user-writable directories outside the browser profile path
- Detect new registry Run key or scheduled task creation from processes in the browser process tree
- Monitor for credential file access by browser child processes targeting Windows Credential Manager or browser-stored password databases
SIEM Correlation Rules
- Correlate browser child process creation events with preceding DNS queries to newly registered, low-reputation, or previously unseen domains within a five-minute window
- Alert on browser renderer processes making system API calls outside the documented Chromium sandbox boundary
- Flag large outbound data transfers from browser processes to external destinations not matching known browser update, telemetry, or CDN infrastructure
- Build a browser version compliance rule that fires when any endpoint reports a Chrome, Edge, or Brave version below the patched threshold
- Correlate credential access events from browser process contexts with subsequent SaaS platform authentication attempts from unexpected source IPs within a 30-minute window
Threat Hunting for the Google Chromium Zero-Day
Run these proactive hunts across your endpoint fleet now:
- Query all child process execution events from browser executables since June 9, 2026 for any process that is not a known browser utility
- Review DNS query logs from browser processes for connections to domains registered within the past 30 days across all enterprise endpoints
- Audit all Electron-based desktop applications in your environment against their embedded Chromium runtime versions and flag anything below the equivalent patched build
- Check all enterprise endpoints for browser extensions installed on or after June 9, 2026 that were not deployed through enterprise policy
- Review cloud platform access logs for authentication events using session tokens created before June 9, 2026 from unusual source IPs or geographies
- Hunt for browser process memory dump files or crash reporter uploads that may indicate failed exploitation attempts against CVE-2026-11645
Mitigation Recommendations for the Google Chromium Zero-Day
Update Every Chromium-Based Browser Right Now
Do not wait for automatic rollout. Google states the update takes days to weeks to reach all users through automatic channels. Threat actors are exploiting CVE-2026-11645 right now.
- Deploy Chrome 149.0.7827.102 for Linux and 149.0.7827.102 or 149.0.7827.103 for Windows and Mac to all managed endpoints immediately using your endpoint management platform
- Force manual Chrome updates by navigating to Settings, then Help, then About Google Chrome on any endpoint to immediately check for and apply the update
- Update Microsoft Edge to the latest available version incorporating the CVE-2026-11645 patch
- Update Brave, Opera, Vivaldi, and any other Chromium-based browser deployed in your environment to their latest available versions
- Verify patch completion across your full endpoint fleet using browser version inventory reporting in your endpoint management platform
Audit and Patch Every Chromium Runtime in Your Environment
- Inventory all Electron-based desktop applications deployed across your endpoint fleet and identify each application's embedded Chromium version
- Flag any Electron application running Chromium below the equivalent patched build and contact the application vendor for a security update
- Temporarily restrict Electron applications from rendering external web content if no vendor patch is yet available
- Include embedded Chromium runtime versions in your ongoing vulnerability management scanning program as a permanent practice
Apply Interim Browser Security Controls
While patching is underway, reduce exposure through these immediate controls:
- Enable Safe Browsing Enhanced Protection mode across all managed Chrome instances through enterprise policy
- Apply DNS filtering at both the endpoint and network layer to block connections to newly registered domains and known exploit delivery infrastructure
- Implement web content filtering policies restricting access to ad network categories with poor reputation scores to reduce malvertising exposure
- Consider enabling Chrome's strict site isolation policy through enterprise configuration to strengthen the renderer sandbox boundary
Harden Endpoint Detection for Browser Exploit Chains
- Verify all endpoint EDR platforms have behavioral detection rules active for browser child process execution and process injection patterns
- Enable Windows Defender Exploit Guard or equivalent exploit mitigation settings specifically for Chrome and Edge browser processes
- Apply application control policies limiting which executables browser child processes can launch on managed endpoints
- Ensure network-level detection and response tooling is collecting browser process outbound connection metadata for forensic investigation capability
Enforce Zero Trust Controls for Browser Session Integrity
- Force immediate re-authentication across all critical SaaS platforms and cloud consoles to invalidate any session tokens potentially compromised before patching
- Implement session token lifetime policies on critical platforms that require re-authentication every four to eight hours rather than relying on long-lived tokens
- Enable continuous access evaluation on cloud platforms that can revoke session tokens when endpoint compliance signals indicate a device is no longer meeting security policy requirements
- Apply conditional access policies requiring patched and compliant device attestation before granting access to sensitive cloud resources
What the Five Chrome Zero-Days of 2026 Tell Security Leaders
The Google Chromium zero-day CVE-2026-11645 is the fifth confirmed Chrome zero-day exploitation in six months. This is the strategic context every security leader needs to incorporate into their 2026 threat model.
Browser patching must be treated as emergency response, not routine maintenance. Each of the five Chrome zero-days of 2026 was actively exploited before or immediately following public disclosure. The model of testing Chrome updates through a two-week patch evaluation cycle before deployment is incompatible with the current exploitation tempo. Chrome updates addressing confirmed in-the-wild exploitation need same-day or next-day deployment. The Chrome update mechanism is among the lowest-risk patch deployments in enterprise IT. It does not modify operating system components, does not require reboots, and can be rolled back trivially. The risk-benefit calculation for rapid Chrome emergency patching is overwhelmingly clear.
Chromium runtime inventory is now a core vulnerability management requirement. Every organization that patches Chrome promptly but has no visibility into embedded Chromium runtimes in Electron applications is maintaining blind spots that sophisticated threat actors are motivated to target specifically because patching teams overlook them. Adding Chromium runtime version tracking to your vulnerability management program is not optional modernization. It is the direct operational response the current threat environment requires.
Browser behavioral detection is an underfunded security capability. Most enterprise EDR deployments have strong detection for traditional executable-based initial access but limited tuning for browser process abuse. Threat actors building drive-by exploitation chains specifically because browser exploitation bypasses most perimeter and endpoint controls know this gap exists. Tuning EDR behavioral rules for browser child process execution, process injection from browser contexts, and renderer process network anomalies is the detection investment that matches this threat class.
Key Takeaway
The Google Chromium zero-day CVE-2026-11645 is actively exploited. CISA confirmed it on June 9, 2026 and directed federal agencies to patch by June 23. It targets V8's JavaScript engine through out-of-bounds memory access classified under both CWE-787 and CWE-125. Exploitation requires only that a user visits a specially crafted malicious HTML page, with no credentials and no additional user interaction. Sophisticated attackers chain it with sandbox escape exploits for full host system compromise. It affects every Chromium-based browser and every Electron application runtime, not just Chrome. The Chrome 149 update addresses 74 total vulnerabilities including 17 critical severity issues, making it the most consequential Chrome security release of 2026.
Summary of critical actions:
- Deploy Chrome 149.0.7827.102 or 149.0.7827.103 to all endpoints now without waiting for automatic rollout
- Update Microsoft Edge, Brave, Opera, and all other Chromium-based browsers independently on their own patching cycles
- Audit every Electron-based desktop application for embedded Chromium runtime versions and push vendor patches immediately
- Activate EDR behavioral rules for browser child process execution and process injection from browser contexts
- Enable DNS filtering and Safe Browsing Enhanced Protection across all managed browsers during the patching window
- Force re-authentication on all critical SaaS and cloud platforms to invalidate potentially compromised session tokens
- Hunt for unexpected child processes from browser executables since June 9, 2026 across your full endpoint fleet
- Add embedded Chromium runtime version tracking to your permanent vulnerability management program
- Treat future Chrome emergency updates for confirmed in-the-wild exploitation with same-day deployment urgency
The Google Chromium zero-day pattern of 2026 is a defining signal for how security teams must treat browser security going forward. Five exploited zero-days in six months confirms that browsers are the most actively contested attack surface in enterprise security today. Organizations that treat browser patching with the same urgency applied to server-side critical patches and build detection capabilities specifically for browser exploitation will be materially more resilient against the threat actor investment this attack surface is attracting.
Frequently Asked Questions About the Google Chromium Zero-Day
What is the Google Chromium zero-day CVE-2026-11645?
The Google Chromium zero-day CVE-2026-11645 is a high-severity out-of-bounds memory read and write vulnerability in Chrome's V8 JavaScript engine classified under CWE-787 and CWE-125. It allows attackers to execute arbitrary code within the browser sandbox by delivering specially crafted JavaScript through any malicious or compromised webpage. CISA confirmed active in-the-wild exploitation on June 9, 2026. It is the fifth Chrome zero-day patched in 2026 and is fixed in Chrome version 149.0.7827.102 and 149.0.7827.103. The flaw was discovered by an anonymous researcher identified as 303f06e3 and reported on April 27, 2026, earning a $55,000 bug bounty reward.
Is the Google Chromium zero-day actively being exploited right now?
Yes. Google explicitly confirmed in their security advisory that an exploit for CVE-2026-11645 exists in the wild. CISA added CVE-2026-11645 to its Known Exploited Vulnerabilities catalog on June 9, 2026, indicating evidence of real-world attacks tracked by threat intelligence partners. CISA's advisory noted that no specific ransomware campaign has been confirmed as using this vulnerability at the time of publication, but active exploitation is confirmed. Every Chromium-based browser below the patched version is currently exposed.
How does the Google Chromium zero-day exploit work technically?
The Google Chromium zero-day CVE-2026-11645 exploits an out-of-bounds memory access condition in V8 during JavaScript execution. V8 processes JavaScript from every website a user visits, giving attackers a direct path to the vulnerable code through any controlled webpage. A specially crafted HTML page delivers malicious JavaScript that triggers the out-of-bounds read and write in V8, corrupting memory in the browser's renderer process. Security analysts assess that attackers are chaining CVE-2026-11645 with a sandbox escape exploit to achieve full code execution on the victim's host system beyond the browser sandbox boundary.
Why does the Google Chromium zero-day affect more than just Chrome?
The Google Chromium zero-day affects every browser and application built on the Chromium engine because all of them share the same V8 JavaScript engine codebase. Microsoft Edge, Brave, Opera, Vivaldi, Samsung Internet, and all Electron-based desktop applications embed their own copies of Chromium. Each of these has a separate patching cycle from Google's Chrome releases. Patching Chrome does not update any other Chromium-based browser or Electron application runtime. Organizations must patch every Chromium runtime in their environment independently to fully address CVE-2026-11645.
Who is most at risk from the Google Chromium zero-day CVE-2026-11645?
Every user running an unpatched Chromium-based browser or Electron application is at risk. Enterprise environments face elevated risk through two specific vectors: watering hole attacks targeting websites frequented by employees in specific industries, and malvertising campaigns delivering exploit payloads through advertising on legitimate high-traffic websites. Organizations with slow browser patch deployment cycles, untracked Electron application inventories, or limited EDR behavioral detection for browser process abuse face the highest risk of exploitation before remediation is complete.
How should organizations respond to the Google Chromium zero-day?
Organizations must immediately deploy Chrome 149.0.7827.102 or 149.0.7827.103 to all managed endpoints without waiting for the automatic update rollout. Security teams must separately update Microsoft Edge, Brave, and all other Chromium-based browsers through their own update mechanisms. A full inventory of Electron-based desktop applications must be conducted to identify embedded Chromium runtime versions, with vendors contacted for security patches. EDR behavioral rules for browser child process execution and process injection must be verified as active. Re-authentication should be forced across critical SaaS and cloud platforms to invalidate session tokens potentially compromised before patching. Threat hunting should be initiated for unexpected child processes from browser executables since June 9, 2026.

