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-2024-11395

CVE-2024-11395: Google Chrome V8 RCE Vulnerability

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

Updated: January 22, 2026

CVE-2024-11395 Overview

CVE-2024-11395 is a Type Confusion vulnerability in the V8 JavaScript engine used by Google Chrome prior to version 131.0.6778.85. This vulnerability allows a remote attacker to potentially exploit heap corruption via a crafted HTML page. The vulnerability occurs within V8, Chrome's high-performance JavaScript and WebAssembly engine, which is a critical component responsible for executing JavaScript code in the browser.

Type confusion vulnerabilities in V8 are particularly dangerous as they can lead to memory corruption, potentially enabling attackers to execute arbitrary code within the context of the browser process. An attacker could exploit this flaw by convincing a user to visit a malicious website containing specially crafted HTML and JavaScript content.

Critical Impact

Remote attackers can potentially achieve heap corruption and arbitrary code execution by luring victims to malicious web pages, compromising confidentiality, integrity, and availability of affected systems.

Affected Products

  • Google Chrome prior to version 131.0.6778.85 on Windows
  • Google Chrome prior to version 131.0.6778.85 on macOS
  • Google Chrome prior to version 131.0.6778.85 on Linux

Discovery Timeline

  • 2024-11-19 - CVE-2024-11395 published to NVD
  • 2025-07-29 - Last updated in NVD database

Technical Details for CVE-2024-11395

Vulnerability Analysis

This vulnerability is classified as CWE-843 (Access of Resource Using Incompatible Type, also known as Type Confusion). Type confusion occurs 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 different, incompatible type.

In the context of V8, the JavaScript engine performs aggressive optimizations including Just-In-Time (JIT) compilation to achieve high performance. These optimizations rely on type inference and speculative execution. When the engine incorrectly assumes the type of an object during optimization, it can lead to type confusion vulnerabilities.

The exploitation of this vulnerability requires user interaction—specifically, the victim must navigate to a malicious web page containing the crafted HTML payload. Once triggered, the type confusion can corrupt heap memory, potentially allowing an attacker to gain control over the execution flow of the browser process.

Root Cause

The root cause of CVE-2024-11395 lies in improper type handling within the V8 JavaScript engine's optimization pipeline. V8 uses various optimization techniques to improve JavaScript execution performance, including inline caching and type speculation. When the engine makes incorrect assumptions about object types during these optimization phases, it can lead to type confusion conditions where memory is accessed using an incompatible type interpretation.

This specific vulnerability allows heap corruption through the type confusion, which could be leveraged to overwrite critical memory structures or redirect execution flow.

Attack Vector

The attack vector for CVE-2024-11395 is network-based and requires user interaction. The attack flow typically involves:

  1. An attacker crafts a malicious HTML page containing JavaScript code designed to trigger the type confusion in V8
  2. The attacker hosts this page on a web server or injects it into a compromised legitimate website
  3. The victim is lured to visit the malicious page through phishing, social engineering, or malvertising
  4. Upon rendering the page, Chrome's V8 engine processes the malicious JavaScript
  5. The crafted code triggers the type confusion vulnerability, corrupting heap memory
  6. The attacker potentially gains arbitrary code execution within the browser's sandbox

The vulnerability mechanism exploits the way V8 handles type transitions during JavaScript object manipulation. Attackers typically craft JavaScript that manipulates object structures in ways that cause the engine's optimizer to make incorrect type assumptions, leading to subsequent memory corruption when those objects are accessed. For detailed technical information, refer to the Chromium Issue Tracker Entry.

Detection Methods for CVE-2024-11395

Indicators of Compromise

  • Unusual Chrome process crashes or unexpected browser terminations that may indicate exploitation attempts
  • Memory corruption artifacts in Chrome crash dumps referencing V8 or JavaScript execution components
  • Network traffic to suspicious domains hosting potential exploit pages
  • Browser history or cached content containing obfuscated or suspicious JavaScript code

Detection Strategies

  • Monitor endpoint detection systems for Chrome process anomalies including unexpected child process spawning or memory access violations
  • Implement network-based detection for known malicious domains distributing V8 exploits
  • Deploy browser extension policies that restrict JavaScript execution on untrusted sites
  • Utilize SentinelOne's behavioral AI to detect exploitation patterns targeting browser components

Monitoring Recommendations

  • Enable Chrome's built-in crash reporting and monitor for V8-related crashes across the enterprise
  • Configure SIEM systems to alert on multiple Chrome crashes from single endpoints which may indicate targeted exploitation
  • Monitor for suspicious process behavior originating from Chrome processes that could indicate successful exploitation and sandbox escape

How to Mitigate CVE-2024-11395

Immediate Actions Required

  • Update Google Chrome to version 131.0.6778.85 or later immediately across all managed endpoints
  • Enable automatic updates for Chrome to ensure timely patching of future vulnerabilities
  • Consider implementing browser isolation solutions for high-risk users until patching is complete
  • Review and restrict access to untrusted websites through web filtering solutions

Patch Information

Google has released a security update addressing this vulnerability. The fix is included in Chrome version 131.0.6778.85 and later releases. Organizations should prioritize updating Chrome installations across their environment. For detailed patch information, refer to the Google Chrome Desktop Update.

The update can be applied through:

  • Chrome's built-in automatic update mechanism
  • Enterprise deployment tools such as Google Admin Console, SCCM, or Intune
  • Manual download from the official Chrome download page

Workarounds

  • Enable Chrome's Site Isolation feature if not already enabled to limit the impact of potential exploitation
  • Consider using browser extensions that block JavaScript execution on untrusted sites (with understanding of functionality impact)
  • Implement network-level controls to block access to known malicious domains
  • Deploy application whitelisting to prevent execution of malicious payloads if sandbox escape occurs
bash
# Verify Chrome version on endpoints
# Windows PowerShell
(Get-Item "C:\Program Files\Google\Chrome\Application\chrome.exe").VersionInfo.FileVersion

# Linux
google-chrome --version

# macOS
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --version

# Ensure version is 131.0.6778.85 or higher

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.29%

  • 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
  • Google Chrome Desktop Update

  • Chromium Issue Tracker Entry
  • Related CVEs
  • CVE-2026-5912: Google Chrome WebRTC RCE Vulnerability

  • CVE-2026-5910: Google Chrome Media Integer Overflow RCE

  • CVE-2026-5909: Google Chrome Media Integer Overflow RCE

  • CVE-2026-5908: Google Chrome Media RCE Vulnerability
Default Legacy - Prefooter | 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