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

CVE-2026-1862: Google Chrome V8 RCE Vulnerability

CVE-2026-1862 is a type confusion remote code execution vulnerability in Google Chrome's V8 JavaScript engine that enables attackers to exploit heap corruption through malicious HTML pages. This article covers technical details, affected versions, impact assessment, and mitigation strategies.

Updated: May 15, 2026

CVE-2026-1862 Overview

CVE-2026-1862 is a type confusion vulnerability in the V8 JavaScript engine used by Google Chrome versions prior to 144.0.7559.132. A remote attacker can exploit heap corruption by serving a crafted HTML page to a target user. Successful exploitation can lead to arbitrary code execution within the renderer process. The flaw affects Chrome on Windows, macOS, and Linux. Google classifies the Chromium security severity as High, and the issue is tracked under CWE-843: Access of Resource Using Incompatible Type.

Critical Impact

A single visit to a malicious web page can trigger heap corruption in the V8 engine, enabling remote code execution in the renderer and a path toward sandbox escape.

Affected Products

  • Google Chrome prior to 144.0.7559.132
  • Chromium-based browsers on Microsoft Windows, Apple macOS, and Linux
  • Microsoft products incorporating the affected Chromium build (see Microsoft CVE Update Guide)

Discovery Timeline

  • 2026-02-03 - CVE-2026-1862 published to NVD
  • 2026-02-11 - Last updated in NVD database

Technical Details for CVE-2026-1862

Vulnerability Analysis

The vulnerability resides in V8, the JavaScript and WebAssembly engine that powers Chrome. V8 applies aggressive optimizations based on assumed object shapes and types. When the engine treats a memory region as one type while it is actually another, attacker-controlled data can be interpreted as pointers or object headers. This mismatch corrupts the heap and allows the attacker to influence control flow within the renderer process. Exploitation requires only that the victim load a crafted HTML page. The attack vector is network-based and requires user interaction, but no prior authentication.

Root Cause

The root cause is improper type checking inside V8 [CWE-843]. Optimized code paths in the just-in-time (JIT) compiler or runtime accept an object as one type without validating that its hidden class or shape still matches expectations. When the actual type differs, V8 reads or writes memory using the wrong field offsets and sizes, producing heap corruption.

Attack Vector

An attacker hosts a malicious page containing JavaScript designed to trigger the type confusion. When a victim visits the page in an unpatched Chrome build, the script forces V8 into an inconsistent state, then leverages the corrupted object to read and write arbitrary memory inside the renderer. From there, attackers typically chain a sandbox escape to achieve code execution on the host. No public proof-of-concept is currently listed, and the issue is not on the CISA Known Exploited Vulnerabilities catalog. Technical details remain restricted in the Chromium Issue Tracker entry.

Detection Methods for CVE-2026-1862

Indicators of Compromise

  • Chrome renderer processes crashing with access violations shortly after browsing untrusted sites
  • Unexpected child processes spawned by chrome.exe following navigation to a new domain
  • Outbound connections from Chrome renderer or helper processes to uncommon hosts immediately after page load

Detection Strategies

  • Inventory installed Chrome versions across the fleet and flag any build below 144.0.7559.132
  • Hunt for HTML or JavaScript payloads delivered from low-reputation domains that contain heavy V8 type manipulation patterns
  • Correlate browser crash telemetry with proxy logs to identify pages that consistently destabilize the renderer

Monitoring Recommendations

  • Forward Chrome crash dumps and Windows Error Reporting data to a central log store for review
  • Monitor process creation events where chrome.exe is the parent of shells, scripting hosts, or LOLBins
  • Track DNS and HTTP telemetry for newly registered domains serving HTML to Chrome user agents

How to Mitigate CVE-2026-1862

Immediate Actions Required

  • Update Google Chrome to version 144.0.7559.132 or later on Windows, macOS, and Linux endpoints
  • Restart browsers after the update so the patched V8 binary is loaded into memory
  • Apply the corresponding Microsoft Edge and other Chromium-derived browser updates referenced in the Microsoft CVE Update Guide

Patch Information

Google addressed CVE-2026-1862 in the Stable channel update announced on the Chrome Releases blog. Administrators should enforce the update through enterprise management tooling and verify rollout via the chrome://settings/help version string. Downstream Chromium projects must consume the same V8 fix before they are considered remediated.

Workarounds

  • Restrict browsing to trusted sites using web filtering or DNS controls until patches are deployed
  • Enable Chrome Enterprise policies that block execution of JavaScript on uncategorized or newly registered domains
  • Use site isolation and disable unnecessary browser extensions to reduce the renderer attack surface
bash
# Verify the installed Chrome version on Linux endpoints
google-chrome --version

# Example Windows policy to force automatic updates via registry
reg add "HKLM\SOFTWARE\Policies\Google\Update" /v UpdateDefault /t REG_DWORD /d 1 /f
reg add "HKLM\SOFTWARE\Policies\Google\Update" /v AutoUpdateCheckPeriodMinutes /t REG_DWORD /d 60 /f

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.8

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-843
  • Technical References
  • Chromium Issue Tracker Entry

  • Microsoft CVE Update Guide
  • Vendor Resources
  • Google Chrome Update Announcement
  • 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