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-7956

CVE-2026-7956: Google Chrome Use After Free Vulnerability

CVE-2026-7956 is a use after free flaw in Google Chrome Navigation that enables sandbox escape through crafted HTML pages. This article covers the technical details, affected versions, and remediation guidance.

Published: May 7, 2026

CVE-2026-7956 Overview

CVE-2026-7956 is a use-after-free vulnerability [CWE-416] in the Navigation component of Google Chrome versions prior to 148.0.7778.96. A remote attacker who has already compromised the renderer process can leverage a crafted HTML page to potentially escape the Chrome sandbox. The flaw affects Chrome on Windows, macOS, and Linux. Google rates the Chromium security severity as Medium, while the National Vulnerability Database assigns a higher CVSS score reflecting the sandbox escape impact.

Critical Impact

Successful exploitation chains a compromised renderer with this Navigation flaw to break out of Chrome's sandbox, granting attackers code execution at browser process privilege on the host.

Affected Products

  • Google Chrome prior to 148.0.7778.96 on Microsoft Windows
  • Google Chrome prior to 148.0.7778.96 on Apple macOS
  • Google Chrome prior to 148.0.7778.96 on Linux

Discovery Timeline

  • 2026-05-06 - CVE-2026-7956 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-7956

Vulnerability Analysis

The vulnerability resides in Chrome's Navigation component, which manages frame transitions, history entries, and document lifecycle events. A use-after-free condition occurs when navigation logic retains a reference to an object that has already been freed. An attacker who controls the renderer process can manipulate navigation state to dereference this dangling pointer. The exploit primitive enables a sandbox escape, meaning code running in the limited renderer sandbox can reach the higher-privileged browser process.

This class of issue is part of a broader pattern of memory safety defects in Chromium's multi-process architecture. The exploitation chain requires user interaction, such as visiting a crafted page, and depends on first compromising the renderer through a separate primitive.

Root Cause

The root cause is improper object lifetime management in Navigation code paths [CWE-416]. A code path frees an object while another reference remains active. Subsequent access to that reference reads or writes freed memory, which an attacker can groom with controlled data to hijack control flow or corrupt state used for sandbox boundary checks.

Attack Vector

Exploitation requires network-delivered content and user interaction. The attacker hosts a malicious HTML page and lures the victim into loading it. The renderer must already be compromised, so this CVE is typically combined with a separate renderer-level memory corruption bug. Once chained, the attacker triggers the navigation use-after-free to escape the sandbox and execute code on the underlying operating system.

No verified public exploit code is available. Technical details are tracked in the Chromium Issue Tracker Entry.

Detection Methods for CVE-2026-7956

Indicators of Compromise

  • Chrome browser processes spawning unexpected child processes such as cmd.exe, powershell.exe, or shell interpreters outside normal renderer behavior.
  • Crashes in chrome.exe referencing the Navigation or content module, particularly access violations on freed heap memory.
  • Outbound connections from Chrome to attacker-controlled domains immediately followed by suspicious local process activity.

Detection Strategies

  • Inventory deployed Chrome versions across the fleet and flag any host running below 148.0.7778.96.
  • Hunt for renderer-to-browser process anomalies that deviate from baseline Chrome process trees.
  • Correlate browser crash telemetry with subsequent process creation or persistence events on the same endpoint.

Monitoring Recommendations

  • Forward Chrome crash dumps and Windows Error Reporting events to the SIEM for triage of memory corruption signatures.
  • Monitor endpoint EDR telemetry for child processes of chrome.exe that perform discovery, credential access, or staging activity.
  • Track DNS and proxy logs for navigations to newly registered or low-reputation domains preceding browser instability.

How to Mitigate CVE-2026-7956

Immediate Actions Required

  • Update Google Chrome to version 148.0.7778.96 or later on all Windows, macOS, and Linux endpoints.
  • Restart Chrome on all managed devices to ensure the patched binary is loaded into memory.
  • Verify enterprise Chrome update policies are not blocking or delaying the stable channel rollout.

Patch Information

Google released the fix in the Chrome Stable Channel at version 148.0.7778.96. Refer to the Google Chrome Update Announcement for the full advisory. Chromium-derived browsers should apply equivalent upstream fixes once available from their vendors.

Workarounds

  • Restrict browsing to trusted sites using web filtering or enterprise browser policies until patching is complete.
  • Enable Site Isolation and Strict Site Isolation policies to raise the cost of chained renderer-to-browser exploits.
  • Deploy attack surface reduction rules that block Chrome from spawning script interpreters or office child processes.
bash
# Verify installed Chrome version on Windows
reg query "HKLM\Software\Google\Update\Clients\{8A69D345-D564-463C-AFF1-A69D9E530F96}" /v pv

# Verify installed Chrome version on Linux
google-chrome --version

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

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechGoogle Chrome

  • SeverityHIGH

  • CVSS Score8.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Chromium Issue Tracker Entry
  • Vendor Resources
  • Google Chrome Update Announcement
  • Related CVEs
  • CVE-2026-7970: Google Chrome Use After Free Vulnerability

  • CVE-2026-7897: Google Chrome Use After Free Vulnerability

  • CVE-2026-7898: Google Chrome Use-After-Free Vulnerability

  • CVE-2026-7901: Google Chrome Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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