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
    • 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-2025-13223

CVE-2025-13223: Google Chrome V8 RCE Vulnerability

CVE-2025-13223 is a type confusion vulnerability in Google Chrome's V8 engine that enables remote code execution through crafted HTML pages. This post covers the technical details, affected versions, and mitigation steps.

Published: March 11, 2026

CVE-2025-13223 Overview

CVE-2025-13223 is a type confusion vulnerability affecting the V8 JavaScript engine in Google Chrome prior to version 142.0.7444.175. This vulnerability allows a remote attacker to potentially exploit heap corruption through a crafted HTML page, enabling arbitrary code execution on victim systems. The flaw exists in how V8 handles type operations, where incorrect type assumptions can lead to memory corruption scenarios.

Critical Impact

This vulnerability is actively exploited in the wild and has been added to the CISA Known Exploited Vulnerabilities (KEV) catalog. Remote attackers can achieve code execution by luring victims to malicious web pages, making this a high-priority patching target for all organizations.

Affected Products

  • Google Chrome versions prior to 142.0.7444.175 on Windows
  • Google Chrome versions prior to 142.0.7444.175 on macOS
  • Google Chrome versions prior to 142.0.7444.175 on Linux

Discovery Timeline

  • 2025-11-17 - CVE-2025-13223 published to NVD
  • 2025-12-02 - Last updated in NVD database

Technical Details for CVE-2025-13223

Vulnerability Analysis

This vulnerability is classified as CWE-843 (Access of Resource Using Incompatible Type, commonly known as Type Confusion). Type confusion vulnerabilities in JavaScript engines like V8 occur when the engine incorrectly assumes the type of an object during execution. When V8's optimizing compiler makes incorrect type assumptions, subsequent operations may treat memory as a different type than it actually is, leading to heap corruption.

The exploitation requires user interaction—specifically, a victim must navigate to a malicious webpage containing specially crafted JavaScript. Once triggered, the type confusion can corrupt heap memory, potentially allowing an attacker to gain control over program execution flow. Given that this vulnerability is listed in CISA's KEV catalog, active exploitation campaigns have been observed in the wild.

Root Cause

The root cause lies in V8's type inference and optimization mechanisms. V8 performs speculative optimizations based on observed types during JavaScript execution. When these type assumptions are violated through carefully crafted JavaScript code, the engine may access memory using an incompatible type, leading to heap corruption. This type confusion enables attackers to manipulate object properties or memory regions in unintended ways.

Attack Vector

The attack vector is network-based and requires user interaction. An attacker must host or inject malicious JavaScript code into a webpage that a victim visits. The crafted HTML page contains JavaScript designed to trigger the type confusion condition in V8. Upon execution, the vulnerability corrupts heap memory, which can be leveraged for arbitrary code execution within the browser's sandbox. Depending on additional vulnerabilities, sandbox escape may also be possible.

The attack flow typically involves:

  1. Attacker crafts malicious JavaScript that manipulates V8's type system
  2. Victim navigates to the malicious page (via phishing, malvertising, or compromised websites)
  3. V8 engine processes the malicious code, triggering type confusion
  4. Heap corruption occurs, enabling code execution within the renderer process

Detection Methods for CVE-2025-13223

Indicators of Compromise

  • Unexpected Chrome renderer process crashes or high memory consumption patterns
  • Network connections to suspicious domains known to host browser exploits
  • Unusual JavaScript execution patterns in browser telemetry logs
  • Chrome crash dumps indicating heap corruption in V8-related memory regions

Detection Strategies

  • Monitor endpoint detection logs for Chrome processes exhibiting abnormal memory access patterns
  • Deploy browser isolation solutions to contain potential exploitation attempts
  • Analyze network traffic for connections to known malicious infrastructure associated with browser exploitation campaigns
  • Review Chrome crash reports for signatures consistent with V8 type confusion exploitation

Monitoring Recommendations

  • Enable Chrome's built-in security telemetry and crash reporting features
  • Configure EDR solutions to alert on suspicious Chrome renderer process behavior
  • Monitor for lateral movement attempts following potential browser compromise
  • Implement DNS monitoring to detect connections to exploit kit infrastructure

How to Mitigate CVE-2025-13223

Immediate Actions Required

  • Update Google Chrome to version 142.0.7444.175 or later immediately on all managed endpoints
  • Prioritize patching given the vulnerability's inclusion in CISA's Known Exploited Vulnerabilities catalog
  • Verify Chrome auto-update functionality is working correctly across the environment
  • Consider temporarily restricting access to untrusted websites until patching is complete

Patch Information

Google has released a security update addressing this vulnerability in Chrome version 142.0.7444.175. The patch is available for Windows, macOS, and Linux platforms. Organizations should consult the Google Chrome Desktop Update for complete release details. Additional technical information is available via the Chromium Issue Tracker Entry. Given the active exploitation status, CISA has included this vulnerability in their Known Exploited Vulnerabilities Catalog.

Workarounds

  • Enable Site Isolation in Chrome to limit the impact of renderer process compromises
  • Configure browser policies to block JavaScript on untrusted sites where feasible
  • Deploy browser isolation or sandboxing technologies to contain potential exploits
  • Use enterprise browser management to enforce rapid updates across the organization
bash
# Verify Chrome version via command line (Windows)
"C:\Program Files\Google\Chrome\Application\chrome.exe" --version

# Verify Chrome version via command line (macOS/Linux)
google-chrome --version

# Force Chrome update check via enterprise policy
# Set UpdateDefault policy to ensure automatic updates

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 Probability2.12%

  • 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
  • CISA KEV Information
  • In CISA KEVYes
  • CWE References
  • CWE-843
  • Technical References
  • Chromium Issue Tracker Entry

  • CISA Known Exploited Vulnerability
  • Vendor Resources
  • Google Chrome Desktop Update
  • Related CVEs
  • CVE-2026-5279: Google Chrome V8 RCE Vulnerability

  • CVE-2026-5277: Google Chrome ANGLE RCE Vulnerability

  • CVE-2026-5274: Google Chrome RCE Vulnerability

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