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-2025-13721

CVE-2025-13721: Google Chrome Use-After-Free Vulnerability

CVE-2025-13721 is a use-after-free flaw in Google Chrome's V8 engine that enables remote attackers to exploit heap corruption through malicious HTML pages. This article covers technical details, affected versions, and mitigation.

Updated: May 15, 2026

CVE-2025-13721 Overview

CVE-2025-13721 is a race condition vulnerability in the V8 JavaScript engine used by Google Chrome versions prior to 143.0.7499.41. The flaw allows a remote attacker to potentially trigger heap corruption by serving a crafted HTML page to a target user. Successful exploitation requires user interaction, such as visiting a malicious or compromised website. Because V8 is the core JavaScript and WebAssembly engine in Chrome and Chromium-based browsers, the vulnerability has broad reach across desktop platforms including Windows, macOS, and Linux. The issue is tracked under [CWE-362] (Concurrent Execution using Shared Resource with Improper Synchronization).

Critical Impact

A remote attacker can leverage a race condition in V8 to corrupt heap memory through a crafted HTML page, potentially leading to arbitrary code execution in the renderer process.

Affected Products

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

Discovery Timeline

  • 2025-12-02 - CVE-2025-13721 published to NVD
  • 2025-12-04 - Last updated in NVD database

Technical Details for CVE-2025-13721

Vulnerability Analysis

The vulnerability resides in V8, the open-source JavaScript and WebAssembly engine that powers Chrome. A race condition occurs when two or more execution flows access shared resources without proper synchronization. In V8, such races can leave heap objects in inconsistent states, enabling heap corruption primitives that an attacker can shape into type confusion or use-after-free conditions.

An attacker exploits the flaw by hosting a crafted HTML page containing JavaScript that triggers the race. The renderer process executes the malicious script, and if the race window is won, heap metadata or object pointers become corrupted. From there, an attacker can pivot toward arbitrary read/write primitives inside the renderer sandbox.

Google classifies the Chromium severity as Medium, while NVD assigns a higher CVSS rating due to the potential confidentiality, integrity, and availability impact.

Root Cause

The root cause is improper synchronization of shared state within V8 [CWE-362]. Concurrent operations, often involving background compilation, garbage collection, or worker threads, modify objects without sufficient locking or atomicity guarantees, producing exploitable memory corruption.

Attack Vector

Exploitation is network-based and requires user interaction. The victim must load attacker-controlled content in Chrome. The attack complexity is high because the attacker must reliably win a narrow timing race against V8 internals. See the Chromium Issue Tracker #355120682 for tracking information.

No verified public proof-of-concept code is available for this vulnerability. The vulnerability mechanism is described in prose above; refer to the Google Chrome Desktop Update for vendor details.

Detection Methods for CVE-2025-13721

Indicators of Compromise

  • Unexpected Chrome renderer process crashes with heap corruption signatures in crash logs or Windows Error Reporting telemetry.
  • Chrome processes spawning unusual child processes or executing shell commands following a browsing session.
  • Outbound connections from Chrome to previously unseen domains immediately after page load.

Detection Strategies

  • Inventory installed Chrome versions across managed endpoints and flag any instance reporting a version earlier than 143.0.7499.41.
  • Monitor renderer crash telemetry for repeated faults originating in v8.dll, libv8.so, or the equivalent module on macOS.
  • Correlate web proxy logs with endpoint browsing history to identify users visiting suspicious or newly registered domains delivering heavy JavaScript or WebAssembly payloads.

Monitoring Recommendations

  • Enable browser telemetry forwarding to a centralized logging platform and alert on Chrome version drift.
  • Track process lineage from chrome.exe and equivalents to detect post-exploitation child processes such as cmd.exe, powershell.exe, or bash.
  • Apply network egress monitoring to identify command-and-control traffic following suspected exploitation.

How to Mitigate CVE-2025-13721

Immediate Actions Required

  • Update Google Chrome to version 143.0.7499.41 or later on all Windows, macOS, and Linux endpoints.
  • Restart Chrome on managed devices to ensure the patched binary is loaded into memory.
  • Audit Chromium-based browsers, such as Microsoft Edge, Brave, Opera, and Vivaldi, and apply the corresponding vendor update that incorporates the V8 fix.

Patch Information

Google released the fix in the Chrome Stable channel update referenced in the Google Chrome Desktop Update. Apply version 143.0.7499.41 or later. Enterprise administrators should deploy the update via Chrome Browser Cloud Management, Group Policy, or their endpoint management platform.

Workarounds

  • Restrict browsing to trusted sites through enterprise URL filtering until the patch is deployed.
  • Disable JavaScript on untrusted origins using the DefaultJavaScriptSetting Chrome enterprise policy where operationally feasible.
  • Enforce site isolation and the strictest sandbox settings to reduce the impact of renderer compromise.
bash
# Configuration example: enforce minimum Chrome version via policy on Linux
# /etc/opt/chrome/policies/managed/version_policy.json
{
  "BrowserSwitcherEnabled": false,
  "DefaultJavaScriptSetting": 2,
  "JavaScriptAllowedForUrls": [
    "https://*.corp.example.com",
    "https://*.trusted-partner.com"
  ]
}

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechGoogle Chrome

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-362
  • Technical References
  • Chromium Issue Tracker #355120682
  • Vendor Resources
  • Google Chrome Desktop Update
  • Related CVEs
  • CVE-2026-7956: Google Chrome Use After Free Vulnerability

  • CVE-2026-7970: Google Chrome Use After Free Vulnerability

  • CVE-2026-7897: Google Chrome Use After Free Vulnerability

  • CVE-2026-7898: Google Chrome Use-After-Free 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