The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-5919

CVE-2026-5919: Google Chrome Auth Bypass Vulnerability

CVE-2026-5919 is an authentication bypass vulnerability in Google Chrome's WebSockets that allows attackers to bypass same origin policy. This post covers the technical details, affected versions, impact, and mitigation.

Updated: May 14, 2026

CVE-2026-5919 Overview

CVE-2026-5919 is an input validation vulnerability in the WebSockets implementation of Google Chrome prior to version 147.0.7727.55. The flaw allows a remote attacker who has already compromised the renderer process to bypass the same-origin policy through a crafted HTML page. Exploitation requires user interaction, typically by enticing the victim to visit attacker-controlled content. Chromium tracks the underlying defect as issue #483423893 and classifies the security severity as Low. Google has released a stable channel update to address the issue across Windows, macOS, and Linux desktop builds.

Critical Impact

An attacker with renderer-level access can violate web origin boundaries, exposing cross-origin data and undermining browser isolation guarantees.

Affected Products

  • Google Chrome versions prior to 147.0.7727.55
  • Chromium-based browser deployments on Microsoft Windows
  • Chromium-based browser deployments on Apple macOS and Linux

Discovery Timeline

  • 2026-04-08 - CVE-2026-5919 published to the National Vulnerability Database
  • 2026-04-29 - Last updated in NVD database

Technical Details for CVE-2026-5919

Vulnerability Analysis

The vulnerability resides in Chrome's WebSockets component, which handles persistent bidirectional connections between web pages and remote servers. Chrome fails to sufficiently validate untrusted input flowing through this subsystem. As a result, an attacker who has already gained code execution inside the sandboxed renderer process can leverage crafted WebSocket interactions to break the same-origin policy. The same-origin policy is the browser's foundational isolation boundary, preventing a document loaded from one origin from reading data belonging to another. Bypassing it permits unauthorized access to authenticated content, cookies, and DOM state from cross-origin web applications. The defect is categorized under CWE-20: Improper Input Validation.

Root Cause

The root cause is missing or incomplete sanitization of attacker-controlled values processed by the WebSockets code path. Trusted assumptions about message framing or origin metadata are not enforced when the renderer is malicious. This allows the compromised renderer to inject data that downstream logic treats as authoritative.

Attack Vector

Exploitation is a two-stage chain. First, an attacker must compromise the renderer process, typically by chaining a prior renderer vulnerability. Second, the attacker delivers a crafted HTML page that the victim loads in the compromised tab. The HTML triggers the malformed WebSocket flow, producing the same-origin policy bypass. The attack is network-reachable and requires user interaction to load the malicious page.

No verified public proof-of-concept code is available. Technical details are tracked in the Chromium Issue Tracker entry #483423893.

Detection Methods for CVE-2026-5919

Indicators of Compromise

  • Chrome browser processes running versions earlier than 147.0.7727.55 after the patch availability window.
  • Anomalous outbound WebSocket connections from renderer child processes to untrusted hosts.
  • Browser telemetry showing unexpected cross-origin reads following navigation to untrusted pages.

Detection Strategies

  • Inventory installed Chrome versions across managed endpoints and flag any build prior to 147.0.7727.55.
  • Inspect proxy and DNS logs for connections to suspicious WebSocket endpoints (ws:// and wss://) initiated from user browsing sessions.
  • Correlate browser crash reports and renderer compromise indicators with subsequent unusual web traffic patterns.

Monitoring Recommendations

  • Enforce browser version reporting through enterprise management policies and alert on outdated installs.
  • Monitor endpoint process trees for child renderer processes spawning unexpected network activity.
  • Track Chrome stable channel announcements via the Chrome Releases blog and integrate update status into vulnerability dashboards.

How to Mitigate CVE-2026-5919

Immediate Actions Required

  • Update Google Chrome to version 147.0.7727.55 or later on all Windows, macOS, and Linux endpoints.
  • Restart browser sessions after the update to ensure the patched binary is active.
  • Verify enterprise auto-update policies are functioning and not blocked by group policy or network filtering.

Patch Information

Google addressed CVE-2026-5919 in the stable channel update announced on the Chrome Releases blog. The fix ships in Chrome 147.0.7727.55 and later. Chromium-based browsers downstream of the Chromium 147 release branch should also incorporate the corrected WebSockets validation logic.

Workarounds

  • Restrict navigation to untrusted external sites through enterprise web filtering until patching completes.
  • Disable or constrain WebSocket usage via browser policy for high-risk user populations where feasible.
  • Apply defense-in-depth controls such as site isolation and strict third-party cookie policies to limit data exposure from a successful bypass.
bash
# Verify Chrome version on Linux
google-chrome --version

# Verify Chrome version on macOS
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --version

# Verify Chrome version on Windows (PowerShell)
(Get-Item "$Env:ProgramFiles\Google\Chrome\Application\chrome.exe").VersionInfo.ProductVersion

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechGoogle Chrome

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-20
  • Technical References
  • Chromium Issue Tracker #483423893
  • Vendor Resources
  • Google Chrome Update Announcement
  • Related CVEs
  • CVE-2026-9115: Google Chrome Auth Bypass Vulnerability

  • CVE-2026-7952: Google Chrome Auth Bypass Vulnerability

  • CVE-2026-7959: Google Chrome Auth Bypass Vulnerability

  • CVE-2026-7966: Google Chrome Auth Bypass Vulnerability
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.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English