Skip to main content
CVE Vulnerability Database
Vulnerability Database/CVE-2026-14001

CVE-2026-14001: Google Chrome UXSS Vulnerability

CVE-2026-14001 is a Universal Cross-Site Scripting flaw in Google Chrome that lets attackers inject malicious scripts via crafted HTML pages. This article covers technical details, affected versions, and mitigation steps.

Published:

CVE-2026-14001 Overview

CVE-2026-14001 is a Universal Cross-Site Scripting (UXSS) vulnerability in the Network component of Google Chrome versions prior to 150.0.7871.47. A remote attacker can inject arbitrary scripts or HTML into pages rendered by the browser by luring a user to a crafted HTML page. The flaw is tracked under [CWE-79] (Improper Neutralization of Input During Web Page Generation). Google's Chromium team rated the security severity as Medium.

Critical Impact

Successful exploitation enables cross-origin script injection, bypassing the same-origin policy and exposing session data, cookies, and authenticated actions across arbitrary web origins.

Affected Products

  • Google Chrome Desktop versions prior to 150.0.7871.47
  • Chromium-based browsers sharing the vulnerable Network component
  • All operating systems supported by Chrome Stable (Windows, macOS, Linux)

Discovery Timeline

  • 2026-06-30 - CVE-2026-14001 published to NVD
  • 2026-07-01 - Last updated in NVD database

Technical Details for CVE-2026-14001

Vulnerability Analysis

The vulnerability resides in Chrome's Network component, which handles request routing, response processing, and cross-origin policy enforcement. An inappropriate implementation in this layer allows attacker-controlled content to influence how responses are associated with rendering contexts. The result is Universal XSS, meaning injected scripts execute within the security context of arbitrary origins rather than only the attacker's own site.

UXSS is a higher-impact class than reflected or stored XSS because it defeats the browser's origin isolation guarantees. An attacker who exploits this flaw can read authenticated content, exfiltrate session cookies scoped to victim sites, and perform state-changing actions on behalf of the user. Attack complexity is low, and the attacker requires no privileges, but user interaction is needed to visit the malicious page.

Root Cause

According to the Chromium issue tracker entry referenced by the advisory, the defect stems from improper handling within the Network stack that fails to correctly neutralize content boundaries between origins. The specific implementation detail is restricted in the Chromium Issue #514481943 tracker while patch adoption progresses.

Attack Vector

Exploitation requires the target to visit or be redirected to an attacker-controlled HTML page. The crafted page abuses the Network component defect to inject script or markup that executes in the context of a different origin loaded by the browser. No authentication or elevated privileges are required on the target system.

Because verified proof-of-concept code has not been publicly released, this article does not include exploitation code. Refer to the Google Chrome Desktop Update for the vendor's summary.

Detection Methods for CVE-2026-14001

Indicators of Compromise

  • Chrome browser process versions reporting below 150.0.7871.47 in endpoint inventory data
  • Outbound requests to newly registered or low-reputation domains delivering HTML that references cross-origin resources in unexpected ways
  • Browser telemetry showing script execution within origins that the user did not directly navigate to
  • Unexpected authenticated API calls originating from browser sessions immediately after visiting third-party pages

Detection Strategies

  • Inventory installed Chrome versions across managed endpoints and flag hosts running builds earlier than 150.0.7871.47
  • Monitor web proxy and DNS logs for user navigation to unfamiliar HTML landing pages followed by cross-origin traffic bursts
  • Correlate browser process telemetry with subsequent credential or session token usage from the same host to identify session theft patterns
  • Deploy Content Security Policy (CSP) reporting endpoints on internal web applications to surface unexpected script origins

Monitoring Recommendations

  • Ingest browser version telemetry into a centralized logging platform and alert on out-of-date Chrome installations
  • Track outbound HTTP responses containing anomalous cross-origin script tags or <iframe> structures
  • Alert on abnormal cookie access patterns or session replay across unrelated origins within short time windows
  • Enable enterprise reporting from Chrome Browser Cloud Management to capture crash and security events

How to Mitigate CVE-2026-14001

Immediate Actions Required

  • Update Google Chrome Desktop to version 150.0.7871.47 or later on all managed endpoints
  • Restart the browser after update deployment to ensure the patched Network component is loaded
  • Push the update through enterprise management tooling to bypass user-deferred update prompts
  • Audit Chromium-based derivative browsers (Edge, Brave, Opera, Vivaldi) for downstream patch availability

Patch Information

Google released the fix in the Chrome Stable channel at version 150.0.7871.47. Details are documented in the Google Chrome Desktop Update release notes. The corresponding upstream fix is tracked in Chromium Issue #514481943.

Workarounds

  • Restrict browsing to trusted sites through enterprise web filtering until patch deployment completes
  • Enforce strict Content Security Policy headers on internal web applications to reduce UXSS impact
  • Configure the HttpOnly and SameSite=Strict flags on session cookies to limit exfiltration paths
  • Disable or restrict third-party cookies through Chrome enterprise policy to reduce cross-origin session exposure
bash
# Chrome enterprise policy example (Linux) to enforce auto-update and cookie hardening
cat > /etc/opt/chrome/policies/managed/cve-2026-14001.json <<'EOF'
{
  "DefaultCookiesSetting": 1,
  "BlockThirdPartyCookies": true,
  "ComponentUpdatesEnabled": true,
  "TargetVersionPrefix": "150.0.7871.47",
  "RelaunchNotification": 2,
  "RelaunchNotificationPeriod": 86400000
}
EOF

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.