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

CVE-2026-5870: Google Chrome Skia RCE Vulnerability

CVE-2026-5870 is a remote code execution vulnerability in Google Chrome's Skia component caused by an integer overflow. Attackers can exploit this flaw via crafted HTML pages to execute code in a sandbox. This article covers technical details, affected versions, impact assessment, and mitigation strategies.

Published: April 10, 2026

CVE-2026-5870 Overview

An integer overflow vulnerability has been identified in the Skia graphics library component of Google Chrome prior to version 147.0.7727.55. This vulnerability allows a remote attacker to potentially execute arbitrary code within the browser sandbox by enticing a victim to visit a specially crafted HTML page. The vulnerability has been assigned a "High" severity rating by Chromium security.

Critical Impact

Remote code execution within the Chrome sandbox via malicious web content, requiring only user interaction (visiting a crafted webpage).

Affected Products

  • Google Chrome prior to version 147.0.7727.55
  • Chromium-based browsers using vulnerable Skia versions
  • Desktop platforms (Windows, macOS, Linux)

Discovery Timeline

  • 2026-04-08 - CVE-2026-5870 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-5870

Vulnerability Analysis

This vulnerability is classified as an integer overflow (CWE-472) within Google Chrome's Skia graphics library. Skia is the 2D graphics engine used by Chrome to render web content, handling operations such as drawing shapes, text, and images. Integer overflows occur when arithmetic operations produce values that exceed the maximum representable value for the data type, causing the value to wrap around unexpectedly.

In this case, the integer overflow in Skia can lead to incorrect memory allocation sizes or buffer boundary calculations. When processing specially crafted graphical content embedded in an HTML page, the overflow condition can corrupt memory structures, ultimately enabling an attacker to execute arbitrary code within the browser's sandboxed renderer process.

Root Cause

The root cause stems from insufficient validation of integer arithmetic operations within the Skia graphics processing pipeline. When handling certain graphical operations or rendering parameters, the affected code performs calculations without proper overflow checks. This allows an attacker to supply input values that, when combined arithmetically, exceed the bounds of the integer data type. The resulting wrapped value leads to undersized buffer allocations or incorrect loop bounds, creating exploitable memory corruption conditions.

Attack Vector

The attack vector for CVE-2026-5870 is network-based, requiring a victim to navigate to a malicious webpage. The exploitation process typically follows this pattern:

  1. An attacker creates a malicious HTML page containing crafted graphical content designed to trigger the integer overflow condition in Skia
  2. The victim is lured to visit the malicious page through phishing, malvertising, or compromised legitimate websites
  3. Chrome's Skia graphics engine processes the malicious content, triggering the integer overflow
  4. The overflow corrupts memory structures within the renderer process
  5. The attacker achieves code execution within the Chrome sandbox

While successful exploitation results in code execution within Chrome's sandbox, this represents a significant security boundary breach. Sandbox escapes, combined with this vulnerability, could potentially lead to full system compromise.

The vulnerability mechanism involves crafted graphical parameters that cause integer overflow during rendering calculations. For complete technical details, refer to the Chromium Issue Tracker Entry once the security embargo is lifted.

Detection Methods for CVE-2026-5870

Indicators of Compromise

  • Unusual Chrome renderer process crashes or memory access violations during normal browsing
  • Chrome crash reports indicating Skia-related stack traces
  • Unexpected memory consumption patterns in Chrome renderer processes
  • Network traffic to newly registered or suspicious domains serving graphical content

Detection Strategies

  • Monitor endpoint detection logs for anomalous behavior in Chrome renderer processes
  • Deploy browser-level policies to alert on repeated renderer crashes
  • Implement network monitoring for connections to known malicious infrastructure
  • Utilize memory protection technologies to detect exploitation attempts

Monitoring Recommendations

  • Enable Chrome's built-in crash reporting and monitor for Skia-related crashes at scale
  • Implement endpoint detection and response (EDR) solutions to monitor Chrome process behavior
  • Review web proxy logs for access to suspicious sites serving crafted HTML content
  • Monitor for lateral movement or persistence mechanisms following potential browser compromise

How to Mitigate CVE-2026-5870

Immediate Actions Required

  • Update Google Chrome to version 147.0.7727.55 or later immediately
  • Enable automatic Chrome updates to ensure timely patch deployment
  • Consider temporarily using alternative browsers if immediate patching is not possible
  • Educate users about the risks of visiting untrusted websites

Patch Information

Google has addressed this vulnerability in Chrome version 147.0.7727.55. Organizations should deploy this update across all managed endpoints as a priority. The official Chrome release announcement is available at the Google Chrome Update Announcement.

For enterprise environments, administrators can use Google's enterprise deployment tools or third-party patch management solutions to ensure consistent deployment across the organization.

Workarounds

  • Restrict access to untrusted websites through web filtering policies
  • Consider enabling Chrome's Site Isolation feature for additional process-level protection
  • Deploy Content Security Policy headers on internal web applications to limit embedded content
  • Use browser sandboxing solutions for high-risk browsing activities
bash
# Chrome Enterprise policy configuration for automatic updates
# Windows Registry Configuration
reg add "HKLM\SOFTWARE\Policies\Google\Update" /v "AutoUpdateCheckPeriodMinutes" /t REG_DWORD /d 60 /f
reg add "HKLM\SOFTWARE\Policies\Google\Update" /v "UpdateDefault" /t REG_DWORD /d 1 /f

# Verify Chrome version on endpoints
"C:\Program Files\Google\Chrome\Application\chrome.exe" --version

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.04%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-472
  • Technical References
  • Google Chrome Update Announcement

  • Chromium Issue Tracker Entry
  • Related CVEs
  • CVE-2026-9121: Google Chrome GPU RCE Vulnerability

  • CVE-2026-9117: Google Chrome GFX Type Confusion RCE Flaw

  • CVE-2026-9113: Google Chrome GPU Out of Bounds Vulnerability

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