A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2024-12381

CVE-2024-12381: Google Chrome V8 Type Confusion RCE Flaw

CVE-2024-12381 is a type confusion flaw in Google Chrome's V8 JavaScript engine that enables remote code execution through heap corruption. This article covers the technical details, affected versions, and mitigations.

Updated: January 22, 2026

CVE-2024-12381 Overview

CVE-2024-12381 is a type confusion vulnerability in the V8 JavaScript engine used by Google Chrome versions prior to 131.0.6778.139. This vulnerability allows a remote attacker to potentially exploit heap corruption through a specially crafted HTML page, which could lead to arbitrary code execution within the browser context.

Critical Impact

Remote attackers can achieve heap corruption and potentially execute arbitrary code by convincing users to visit a malicious webpage containing crafted JavaScript, compromising browser security and user data.

Affected Products

  • Google Chrome versions prior to 131.0.6778.139
  • Chromium-based browsers using vulnerable V8 engine versions
  • All desktop platforms running affected Chrome versions (Windows, macOS, Linux)

Discovery Timeline

  • 2024-12-12 - CVE-2024-12381 published to NVD
  • 2024-12-13 - Last updated in NVD database

Technical Details for CVE-2024-12381

Vulnerability Analysis

This vulnerability is classified as CWE-843 (Access of Resource Using Incompatible Type, commonly known as Type Confusion). Type confusion vulnerabilities occur when a program allocates or initializes a resource such as a pointer, object, or variable using one type, but later accesses that resource using a type that is incompatible with the original type.

In the context of V8, Google Chrome's JavaScript engine, type confusion can occur during the just-in-time (JIT) compilation process or during object property access when the engine makes incorrect assumptions about the type of an object. When V8 incorrectly interprets the type of an object, it may read or write memory at incorrect offsets, leading to heap corruption.

The vulnerability requires user interaction—specifically, the victim must navigate to a malicious webpage containing specially crafted HTML and JavaScript code. Once triggered, the heap corruption could allow an attacker to achieve arbitrary code execution within the sandboxed renderer process.

Root Cause

The root cause of CVE-2024-12381 lies in V8's type handling mechanisms. Type confusion in V8 typically arises from one of several scenarios:

  • Incorrect type inference during JIT compilation where the optimizing compiler makes assumptions about object types that don't hold at runtime
  • Improper handling of type transitions when JavaScript objects change their internal representation
  • Race conditions or edge cases in the type checking logic that allow incompatible types to be used interchangeably

When V8 operates on an object assuming it is one type when it is actually another, the resulting memory operations can corrupt heap structures, potentially allowing attacker-controlled data to influence program execution.

Attack Vector

The attack vector for this vulnerability is network-based and requires user interaction. An attacker would need to:

  1. Create a malicious webpage containing specially crafted HTML and JavaScript designed to trigger the type confusion condition in V8
  2. Distribute the malicious page through phishing, malvertising, or compromised websites
  3. Convince a victim to visit the malicious page using a vulnerable version of Google Chrome
  4. The crafted JavaScript would trigger the type confusion, causing heap corruption that could be leveraged for code execution

The exploitation occurs entirely through the browser's rendering of web content, making it particularly dangerous as it requires no additional software installation or elevated privileges. Technical details about the specific exploitation technique are tracked in Chromium Issue Tracker #381696874.

Detection Methods for CVE-2024-12381

Indicators of Compromise

  • Unexpected browser crashes or instability when visiting certain websites
  • Unusual memory consumption patterns in Chrome renderer processes
  • Detection of known malicious JavaScript patterns targeting V8 type confusion
  • Browser process spawning unexpected child processes or making unusual system calls

Detection Strategies

  • Monitor Chrome version deployments across the organization to identify systems running versions prior to 131.0.6778.139
  • Implement network-based detection for known exploitation patterns targeting V8 vulnerabilities
  • Deploy endpoint detection and response (EDR) solutions capable of detecting browser-based exploitation attempts
  • Review web proxy logs for access to domains known to host browser exploits

Monitoring Recommendations

  • Enable Chrome's built-in crash reporting to identify potential exploitation attempts
  • Monitor for unusual renderer process behavior using endpoint security tools
  • Implement browser isolation solutions for high-risk browsing activities
  • Track JavaScript execution anomalies that may indicate exploitation attempts

How to Mitigate CVE-2024-12381

Immediate Actions Required

  • Update Google Chrome to version 131.0.6778.139 or later immediately
  • Enable automatic updates for Chrome to ensure timely patching of future vulnerabilities
  • Consider using enterprise browser management tools to enforce version requirements
  • Educate users about the risks of visiting untrusted websites

Patch Information

Google has released a security update addressing this vulnerability in Chrome version 131.0.6778.139. The patch was announced in the Google Chrome Stable Update blog post on December 10, 2024. Organizations should prioritize deploying this update across all managed Chrome installations.

The update can be obtained through:

  • Chrome's built-in automatic update mechanism
  • Enterprise deployment through Google Workspace or Chrome Browser Cloud Management
  • Manual download from the official Google Chrome website

Workarounds

  • If immediate patching is not possible, consider temporarily using an alternative browser until Chrome can be updated
  • Implement strict web content filtering to block access to potentially malicious sites
  • Enable Chrome's Site Isolation feature for additional process-level protection
  • Consider deploying browser isolation solutions to contain potential exploitation attempts
bash
# Verify Chrome version on Linux/macOS
google-chrome --version

# Force Chrome update check (user must restart browser)
# Navigate to: chrome://settings/help

# Enterprise deployment - example using Chrome Browser Cloud Management
# Configure automatic updates policy in Google Admin Console
# Apps > Google Chrome > Settings > 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 Probability5.39%

  • 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 #381696874
  • Vendor Resources
  • Google Chrome Stable Update
  • 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