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

CVE-2026-7955: Google Chrome Information Disclosure Flaw

CVE-2026-7955 is an uninitialized use flaw in Google Chrome's GPU component that enables attackers to access sensitive memory data. This article covers the technical details, affected versions, and remediation.

Published: May 7, 2026

CVE-2026-7955 Overview

CVE-2026-7955 is an uninitialized memory use vulnerability [CWE-457] in the GPU component of Google Chrome before version 148.0.7778.96. A remote attacker who has already compromised the renderer process can read potentially sensitive data from process memory by serving a crafted HTML page. Google classifies the Chromium security severity as Medium.

The flaw affects Chrome on Windows, macOS, and Linux. Successful exploitation requires user interaction and a prior renderer compromise, which raises attack complexity. Even so, the issue can leak memory contents that aid sandbox escape or further exploitation chains.

Critical Impact

Attackers chaining this bug with a renderer compromise can extract memory contents from the GPU process, exposing sensitive data and weakening Chrome's sandbox boundary.

Affected Products

  • Google Chrome prior to 148.0.7778.96
  • Microsoft Windows builds running vulnerable Chrome versions
  • Apple macOS and Linux builds running vulnerable Chrome versions

Discovery Timeline

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

Technical Details for CVE-2026-7955

Vulnerability Analysis

The vulnerability resides in Chrome's GPU process, which handles graphics command buffers, shader compilation, and compositor operations on behalf of renderers. The GPU process reads a memory region before the code path that should populate it has executed. The resulting read returns whatever residual bytes occupied that allocation, which can include pointers, tokens, or fragments of prior IPC payloads.

Because the GPU process holds elevated privileges relative to the renderer sandbox, leaked bytes give attackers reconnaissance value. An attacker can use disclosed addresses to defeat Address Space Layout Randomization (ASLR) or to locate gadgets for a follow-on exploit. The vulnerability does not, on its own, grant code execution.

Exploitation requires the attacker to already control the renderer through a separate bug. The crafted HTML page then issues GPU commands that reach the uninitialized state. User interaction such as page navigation or rendering is required for the path to trigger.

Root Cause

The defect maps to [CWE-457: Use of Uninitialized Variable]. A code path in the GPU component reads a stack or heap allocation without first writing a defined value. Compiler optimizations and allocation reuse increase the likelihood that the read returns attacker-relevant data rather than zeros.

Attack Vector

The attack vector is network-based through a malicious or compromised website. Delivery mechanics rely on:

  • A pre-existing renderer compromise that lets the attacker issue arbitrary GPU IPC messages.
  • A crafted HTML page that drives the renderer into the vulnerable GPU code path.
  • User interaction to load the page and trigger rendering.

The vulnerability mechanism is described in Google's Chrome Stable Channel Update and the Chromium Issue Tracker Entry. No public proof-of-concept code is available.

Detection Methods for CVE-2026-7955

Indicators of Compromise

  • Chrome processes running versions below 148.0.7778.96 after the patch release window.
  • GPU process crashes or anomalous restarts coinciding with rendering of untrusted pages.
  • Renderer process anomalies preceding GPU IPC traffic spikes, suggesting a chained exploit attempt.

Detection Strategies

  • Inventory installed Chrome versions across endpoints and flag any build below 148.0.7778.96.
  • Correlate browser child-process telemetry to detect renderer compromise patterns that typically precede GPU-targeted exploitation.
  • Monitor for unexpected outbound connections initiated by the Chrome GPU process, which should not normally make network calls.

Monitoring Recommendations

  • Collect Chrome crash dumps and feed them into a SIEM or data lake for trend analysis on GPU process faults.
  • Track web filtering logs for traffic to newly registered or low-reputation domains delivering complex HTML or WebGL content.
  • Alert on Chrome processes spawning shell binaries or accessing credential stores, which would indicate a successful chained exploit.

How to Mitigate CVE-2026-7955

Immediate Actions Required

  • Update Chrome to 148.0.7778.96 or later on all Windows, macOS, and Linux endpoints.
  • Force a browser restart through endpoint management tooling to ensure the patched binary is loaded.
  • Audit managed extensions and remove any that are not strictly required, reducing renderer attack surface.

Patch Information

Google released the fix in the Chrome Stable channel as version 148.0.7778.96. Details are published in the Google Chrome Stable Update advisory. Enterprise administrators should validate auto-update enrollment and confirm policy settings do not pin clients to older builds.

Workarounds

  • Disable hardware acceleration in Chrome via chrome://settings or the HardwareAccelerationModeEnabled enterprise policy to reduce exposure of the GPU process until patching completes.
  • Restrict browsing to trusted sites through web filtering or enterprise browser policies for high-risk user groups.
  • Apply the principle of least privilege on user accounts so that any post-exploitation activity has limited reach.
bash
# Verify Chrome version on Linux endpoints
google-chrome --version

# Windows: query installed Chrome version from the registry
reg query "HKLM\SOFTWARE\Google\Update\Clients\{8A69D345-D564-463C-AFF1-A69D9E530F96}" /v pv

# Enterprise policy snippet to disable hardware acceleration as a temporary workaround
# Linux: /etc/opt/chrome/policies/managed/disable-hwaccel.json
{
  "HardwareAccelerationModeEnabled": false
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechGoogle Chrome

  • SeverityMEDIUM

  • CVSS Score5.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-457
  • Technical References
  • Chromium Issue Tracker Entry
  • Vendor Resources
  • Google Chrome Stable Update
  • Related CVEs
  • CVE-2026-7949: Google Chrome Information Disclosure Flaw

  • CVE-2026-7960: Google Chrome Information Disclosure Bug

  • CVE-2026-7961: Google Chrome Information Disclosure Flaw

  • CVE-2026-7965: Google Chrome Information Disclosure Bug
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