CVE-2026-11666 Overview
CVE-2026-11666 affects Google Chrome versions prior to 149.0.7827.103. The flaw stems from insufficient validation of untrusted input in the Input component, allowing a remote attacker to perform user interface (UI) spoofing through a crafted HTML page. Chromium rates the security severity as High, while NVD assigns a medium CVSS score of 5.4.
The vulnerability requires user interaction and operates over the network. It impacts Chrome installations across Windows, macOS, and Linux platforms. The Chromium project tracks this issue under Chromium Issue 514009323.
Critical Impact
A remote attacker can spoof browser UI elements through a crafted page, enabling phishing and credential theft scenarios against users who interact with attacker-controlled content.
Affected Products
- Google Chrome prior to 149.0.7827.103
- Chrome desktop builds on Microsoft Windows, Apple macOS, and Linux
- Chromium-based browsers inheriting the unpatched Input component
Discovery Timeline
- 2026-06-09 - CVE-2026-11666 published to NVD
- 2026-06-10 - Last updated in NVD database
Technical Details for CVE-2026-11666
Vulnerability Analysis
The vulnerability resides in Chrome's Input component, which handles user input events and related rendering states. The component fails to sufficiently validate untrusted input supplied through a crafted HTML page. This validation gap enables an attacker to manipulate browser UI elements in ways that misrepresent the browser's actual state to the user.
UI spoofing weaknesses in browsers typically allow attackers to forge address bar content, security indicators, permission prompts, or overlay dialogs. Such spoofing can convince a victim that a malicious page originates from a trusted domain, undermining trust signals the browser relies on to communicate security context.
The weakness is classified under [CWE-20] Improper Input Validation. NVD records an EPSS probability of 0.086% (24.751 percentile), indicating low observed exploitation likelihood at publication.
Root Cause
The Input component accepts attacker-influenced data without enforcing the constraints required to maintain UI integrity. Insufficient validation allows crafted HTML content to drive the browser into rendering states that misalign visual elements with their underlying security context.
Attack Vector
An attacker hosts a crafted HTML page and lures a victim to visit it. The page exercises the unvalidated input handling path to render misleading UI elements. Exploitation requires user interaction such as visiting the page and interacting with the spoofed element. No authentication is required, and the attack travels across the network.
No public proof-of-concept code, exploit module, or CISA KEV listing exists for CVE-2026-11666 at the time of writing. Technical specifics remain limited because the Chromium issue tracker entry is access-restricted pending broader patch rollout.
Detection Methods for CVE-2026-11666
Indicators of Compromise
- Chrome browser processes running versions earlier than 149.0.7827.103 after the patch availability date
- Web traffic to unfamiliar domains immediately followed by credential submission to lookalike URLs
- User reports of inconsistent address bar content, mismatched security indicators, or unexpected permission prompts
Detection Strategies
- Inventory installed Chrome versions across the fleet and flag any host below 149.0.7827.103
- Correlate browser navigation telemetry with phishing indicators such as homograph domains and newly registered hostnames
- Review endpoint telemetry for Chrome child processes spawned from documents or email clients leading to suspicious URLs
Monitoring Recommendations
- Enable centralized Chrome version reporting through enterprise policies and management consoles
- Forward browser and proxy logs to a centralized analytics platform for retroactive hunting once additional IOCs become public
- Track Chrome Releases announcements and subscribe to the Chrome Stable channel update feed for follow-up advisories
How to Mitigate CVE-2026-11666
Immediate Actions Required
- Update Google Chrome to 149.0.7827.103 or later on Windows, macOS, and Linux endpoints
- Force-restart Chrome after the update to ensure the patched binary is loaded by all sessions
- Audit Chromium-based browsers and embedded WebView components for equivalent fixes from their vendors
Patch Information
Google released the fix in the Chrome Stable channel update documented in the Chrome Releases blog. Administrators should confirm deployment by verifying that all managed endpoints report version 149.0.7827.103 or higher.
Workarounds
- Restrict browsing to trusted domains via web filtering or DNS policy until patching completes
- Reinforce user awareness for phishing patterns that rely on spoofed browser UI elements
- Disable or limit interaction with untrusted HTML rendering contexts in managed Chrome profiles where feasible
# Verify the installed Chrome version on each platform
# Windows (PowerShell)
(Get-Item "$Env:ProgramFiles\Google\Chrome\Application\chrome.exe").VersionInfo.ProductVersion
# macOS
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --version
# Linux
google-chrome --version
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.


