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

CVE-2026-7912: Google Chrome GPU Integer Overflow RCE

CVE-2026-7912 is an integer overflow vulnerability in Google Chrome's GPU component on Android that enables remote code execution through arbitrary memory access. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-7912 Overview

CVE-2026-7912 is an integer overflow vulnerability in the GPU component of Google Chrome on Android. The flaw affects 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 perform arbitrary read and write operations. Google's Chromium team rated the underlying issue as High security severity, while the CVSS base score reflects the precondition of a compromised renderer.

Critical Impact

Attackers chaining a renderer compromise with this GPU integer overflow can achieve arbitrary read/write primitives, enabling sandbox-escape style memory corruption on Android devices running outdated Chrome builds.

Affected Products

  • Google Chrome on Android prior to 148.0.7778.96
  • Google Android (as Chrome host platform)
  • Chromium-based mobile browsers sharing the same GPU code path

Discovery Timeline

  • 2026-05-06 - CVE-2026-7912 published to NVD
  • 2026-05-06 - Last updated in NVD database
  • 2026-05 - Google releases stable channel update addressing the issue

Technical Details for CVE-2026-7912

Vulnerability Analysis

The vulnerability is an integer overflow [CWE-472] in Chrome's GPU process on Android. The GPU process handles graphics commands forwarded from the renderer through Chrome's IPC channels. When a crafted HTML page issues GPU commands with attacker-controlled size or index parameters, an arithmetic operation wraps past the maximum representable integer value. The wrapped value is then used to size or index a buffer, leading to inconsistent state between allocation and access logic.

Exploitation requires that the attacker first compromise the renderer process, typically through a separate browser bug. With renderer control, the attacker forges GPU IPC messages that trigger the overflow. The resulting mismatch yields out-of-bounds memory access in the more privileged GPU process, providing arbitrary read and write primitives across that process's address space.

Root Cause

The root cause is unchecked arithmetic on attacker-influenced integer inputs handled by the GPU command processing path. Without saturating arithmetic or pre-multiplication bounds checks, the computed buffer dimension wraps and bypasses subsequent validation that assumes the result fits within expected limits.

Attack Vector

The attack chain is network-delivered but requires user interaction and a prior renderer compromise. A victim loads a malicious or compromised page in Chrome on Android. Exploit code in that page first triggers a renderer-side vulnerability, then issues crafted GPU commands that drive the integer overflow. Successful exploitation yields read/write primitives in the GPU process, which can be staged toward broader sandbox escape on the device.

No public proof-of-concept code is available for CVE-2026-7912. Technical details remain under restricted access in the Chromium issue tracker. See the Chromium Issue #497639714 and the Google Chrome Update Announcement for vendor-published information.

Detection Methods for CVE-2026-7912

Indicators of Compromise

  • Chrome for Android client versions reporting a build older than 148.0.7778.96 in user-agent telemetry or MDM inventories.
  • Unexpected Chrome GPU process crashes or SIGSEGV signals on Android devices correlated with web browsing activity.
  • Outbound connections from mobile endpoints to newly registered or low-reputation domains hosting heavily obfuscated JavaScript and WebGL payloads.

Detection Strategies

  • Inventory installed Chrome versions across managed Android fleets and flag any device running a build below 148.0.7778.96.
  • Monitor mobile EDR telemetry for repeated Chrome GPU process termination events, which may indicate exploitation attempts or unstable exploit chains.
  • Inspect web proxy logs for pages serving WebGL or WebGPU content combined with renderer-targeting exploit patterns.

Monitoring Recommendations

  • Centralize Chrome version data through MDM or UEM platforms and alert on devices missing the patched build after the vendor release window.
  • Forward mobile browser crash telemetry into a SIEM or data lake to correlate GPU process anomalies with browsing destinations.
  • Track threat intelligence feeds for emerging exploit kits chaining renderer bugs with GPU vulnerabilities on Android.

How to Mitigate CVE-2026-7912

Immediate Actions Required

  • Update Google Chrome on Android to version 148.0.7778.96 or later through Google Play.
  • Enforce automatic Chrome updates on managed Android devices via MDM policy.
  • Identify devices that cannot update and restrict their access to untrusted web content until patched.

Patch Information

Google addressed CVE-2026-7912 in the stable channel update for Chrome on Android at version 148.0.7778.96. Refer to the Google Chrome Update Announcement for the full release notes and the Chromium Issue #497639714 for the vendor tracker entry.

Workarounds

  • Restrict browsing to trusted sites on unpatched Android devices using web filtering or DNS-layer controls.
  • Disable hardware-accelerated graphics features for Chrome through enterprise policy where supported, accepting the performance trade-off.
  • Use mobile threat defense tooling to block known malicious URLs and exploit infrastructure until devices receive the update.
bash
# Verify deployed Chrome version on a managed Android device via adb
adb shell dumpsys package com.android.chrome | grep versionName
# Expected output should be 148.0.7778.96 or higher

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechGoogle Chrome

  • SeverityMEDIUM

  • CVSS Score4.2

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-472
  • Technical References
  • Chromium Issue #497639714
  • Vendor Resources
  • Google Chrome Update Announcement
  • Related CVEs
  • CVE-2026-7950: Google Chrome RCE Vulnerability

  • CVE-2026-7951: Google Chrome WebRTC RCE Vulnerability

  • CVE-2026-7962: Google Chrome RCE Vulnerability

  • CVE-2026-7963: Google Chrome RCE 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