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

CVE-2026-7967: Google Chrome RCE Vulnerability

CVE-2026-7967 is a remote code execution flaw in Google Chrome that enables sandbox escape through insufficient input validation. This post covers the technical details, affected versions, and mitigation steps.

Published: May 7, 2026

CVE-2026-7967 Overview

CVE-2026-7967 is an input validation vulnerability in the Navigation component of Google Chrome versions prior to 148.0.7778.96. The flaw allows a remote attacker who has already compromised the renderer process to potentially escape the Chrome sandbox using a crafted HTML page. Google tracks the issue under [CWE-20] (Improper Input Validation) and assigns it a Chromium security severity of Medium, while the National Vulnerability Database rates it High. Sandbox escapes in Chrome are commonly chained with renderer exploits to achieve full compromise of the host operating system across Windows, macOS, and Linux.

Critical Impact

A successful exploit chain that combines a renderer compromise with this navigation flaw can break out of the Chrome sandbox and execute attacker-controlled code on the host.

Affected Products

  • Google Chrome versions prior to 148.0.7778.96
  • Microsoft Windows, Apple macOS, and Linux desktop builds of Chrome
  • Chromium-derived browsers that share the vulnerable Navigation code path

Discovery Timeline

  • 2026-05-06 - CVE-2026-7967 published to NVD
  • 2026-05-07 - Last updated in NVD database
  • 2026-05 - Google releases fixed Stable channel build via Chrome Stable Update Blog

Technical Details for CVE-2026-7967

Vulnerability Analysis

The defect lives in the Navigation logic of the Chrome browser process, which is responsible for handling page transitions, frame creation, and cross-origin checks initiated by renderer processes. The browser process trusts certain navigation parameters supplied by the renderer over Mojo IPC. Insufficient validation of those untrusted inputs lets a compromised renderer drive the browser process into a state that violates the site isolation and sandbox boundaries.

Exploitation requires two conditions. First, the attacker must already control a renderer process, typically through a separate memory corruption or type confusion bug triggered by malicious web content. Second, the user must interact with attacker-controlled content for the navigation flow to fire. The high attack complexity reflects the need to chain a prior renderer exploit with this primitive.

Root Cause

The browser-side Navigation handler does not adequately verify fields supplied through inter-process messages from the renderer. Because renderer processes are explicitly considered untrusted, any browser code that consumes their input must validate origins, frame identifiers, and URL targets before acting. Missing or insufficient checks in this path enable a compromised renderer to misrepresent navigation state and obtain capabilities outside its sandbox.

Attack Vector

The attack begins when a user visits a crafted HTML page that triggers an existing renderer compromise. The attacker then issues malformed navigation IPC messages to the browser process. Because the impact crosses a security boundary into the privileged browser process, the scope is changed and confidentiality, integrity, and availability of the host can all be affected. No verified public exploit code is available; technical specifics are referenced in the Chromium Issue Tracker Entry.

Detection Methods for CVE-2026-7967

Indicators of Compromise

  • Chrome renderer or utility processes spawning unexpected child processes such as cmd.exe, powershell.exe, or /bin/sh.
  • Chrome browser process writing executable files or scheduled tasks outside the standard user data directory.
  • Outbound connections from chrome.exe to newly registered or low-reputation domains immediately following page loads.

Detection Strategies

  • Hunt for process lineage where chrome.exe is the parent of shell interpreters or living-off-the-land binaries, which is unusual for sandboxed browser activity.
  • Correlate browser crash telemetry with subsequent privilege-sensitive file or registry modifications on the same endpoint.
  • Inventory installed Chrome versions across the fleet and flag any host running a build earlier than 148.0.7778.96.

Monitoring Recommendations

  • Forward Chrome crash dumps and chrome_debug.log to a central logging platform for retrospective analysis.
  • Enable EDR rules that alert on browser-spawned code execution and unexpected token manipulation by browser processes.
  • Monitor enterprise update channels and Group Policy state to confirm automatic Chrome updates are not disabled on managed endpoints.

How to Mitigate CVE-2026-7967

Immediate Actions Required

  • Update all Chrome installations to version 148.0.7778.96 or later on Windows, macOS, and Linux.
  • Restart browser sessions after the update so the patched binaries are loaded into memory.
  • Audit Chromium-based browsers and embedded WebViews for upstream patches addressing the same Navigation defect.

Patch Information

Google resolved CVE-2026-7967 in the Stable channel update documented at the Chrome Stable Update Blog. Enterprise administrators should validate that Chrome auto-update is functional and push the fixed build through Microsoft Intune, Jamf, or equivalent management tooling. Downstream Chromium browsers should be updated as their vendors merge the fix.

Workarounds

  • Restrict browsing to trusted sites using enterprise web filtering until patching is complete, since exploitation requires a malicious page and user interaction.
  • Enforce Site Isolation and disable unnecessary Chrome extensions that broaden the renderer attack surface.
  • Apply least-privilege account policies so that any sandbox escape executes with minimal host permissions.
bash
# Verify installed Chrome version on Linux
google-chrome --version

# Force update on macOS managed fleets
sudo /Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftwareUpdateAgent -runMode oneshot

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

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

  • 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-20
  • Technical References
  • Chromium Issue Tracker Entry
  • Vendor Resources
  • Chrome Stable Update Blog
  • 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