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

CVE-2024-2887: Google Chrome WebAssembly RCE Vulnerability

CVE-2024-2887 is a type confusion remote code execution vulnerability in Google Chrome's WebAssembly component affecting versions prior to 123.0.6312.86. This article covers technical details, impact, and mitigations.

Published: January 28, 2026

CVE-2024-2887 Overview

CVE-2024-2887 is a Type Confusion vulnerability in the WebAssembly component of Google Chrome prior to version 123.0.6312.86. This vulnerability allows a remote attacker to execute arbitrary code via a crafted HTML page. The flaw was demonstrated at Pwn2Own Vancouver 2024, highlighting its severity and exploitability in real-world scenarios.

Critical Impact

This vulnerability enables remote code execution through maliciously crafted web content, potentially allowing attackers to gain control of affected systems when users visit compromised websites.

Affected Products

  • Google Chrome versions prior to 123.0.6312.86
  • Fedora 38, 39, and 40 (via bundled Chromium)
  • Chromium-based browsers using vulnerable WebAssembly implementations

Discovery Timeline

  • March 26, 2024 - CVE-2024-2887 published to NVD
  • March 28, 2025 - Last updated in NVD database

Technical Details for CVE-2024-2887

Vulnerability Analysis

This vulnerability (CWE-843: Access of Resource Using Incompatible Type) stems from improper type handling within Chrome's WebAssembly engine. Type confusion vulnerabilities occur when a program allocates or initializes a resource as one type but later accesses it using an incompatible type, leading to memory corruption.

In the context of WebAssembly, the V8 JavaScript engine must properly validate and handle type information when executing WebAssembly modules. When type confusion occurs, the engine may misinterpret memory contents, allowing attackers to manipulate memory in ways the developers did not intend. This can result in arbitrary code execution within the browser's renderer process.

The vulnerability was successfully exploited at Pwn2Own Vancouver 2024, demonstrating that despite Chrome's sandbox architecture, sophisticated attackers can chain such vulnerabilities to achieve meaningful compromise of target systems.

Root Cause

The root cause lies in the WebAssembly implementation's handling of type information during execution. When processing certain WebAssembly constructs, the V8 engine fails to properly validate type consistency, allowing an attacker to craft WebAssembly code that triggers the type confusion condition. This leads to the engine treating memory regions as different types than originally allocated, corrupting internal data structures and enabling arbitrary code execution.

Attack Vector

The attack requires user interaction—specifically, a victim must navigate to an attacker-controlled or compromised web page containing the malicious HTML and WebAssembly payload. The attack is local to the system (requiring the browser to render the malicious content), though it is delivered remotely via the web. The attack complexity is high, requiring the attacker to craft a specific WebAssembly module that triggers the type confusion and chains it with additional techniques to achieve code execution.

The exploitation flow involves:

  1. Victim visits a malicious or compromised website
  2. The page loads a crafted WebAssembly module
  3. The module triggers the type confusion during execution
  4. Memory corruption enables arbitrary code execution within the renderer process

Due to the nature of this vulnerability, no verified proof-of-concept code is publicly available. Technical details can be found in the Zero Day Initiative Blog Post and the Chromium Issue Tracker Entry.

Detection Methods for CVE-2024-2887

Indicators of Compromise

  • Unusual WebAssembly module loading from untrusted or newly registered domains
  • Chrome renderer process crashes or unexpected behavior following WebAssembly execution
  • Network connections to suspicious domains serving WebAssembly content (.wasm files)
  • Browser memory corruption events or unexpected terminations

Detection Strategies

  • Monitor for Chrome versions below 123.0.6312.86 in enterprise asset inventories
  • Deploy endpoint detection rules that flag unusual WebAssembly compilation patterns
  • Implement web proxy rules to inspect or log .wasm file downloads from untrusted sources
  • Use browser extension policies to restrict WebAssembly execution on untrusted sites

Monitoring Recommendations

  • Enable Chrome's Safe Browsing feature to detect malicious websites
  • Configure centralized logging for browser crash reports and analyze for patterns
  • Monitor DNS queries for suspicious domains associated with web-based attacks
  • Implement SentinelOne Singularity to detect post-exploitation behaviors if the sandbox is bypassed

How to Mitigate CVE-2024-2887

Immediate Actions Required

  • Update Google Chrome to version 123.0.6312.86 or later immediately
  • Apply Fedora security updates for Chromium packages on Fedora 38, 39, and 40
  • Verify all Chromium-based browsers in your environment are updated
  • Consider temporarily disabling WebAssembly via browser policies until patching is complete

Patch Information

Google released a security update addressing this vulnerability on March 26, 2024. The fix is included in Chrome version 123.0.6312.86 and later. Organizations should reference the Google Chrome Desktop Update for official patch details. Fedora users should apply updates via the standard package management system, as documented in the Fedora Package Announcements.

Workarounds

  • Disable WebAssembly in Chrome via enterprise policy: --disable-features=WebAssembly
  • Use site isolation features to limit the impact of renderer compromise
  • Implement strict Content Security Policy headers to restrict WebAssembly sources
  • Deploy web filtering to block access to known malicious domains
bash
# Chrome Enterprise Policy to disable WebAssembly (Windows Registry example)
reg add "HKLM\SOFTWARE\Policies\Google\Chrome" /v WebAssemblyEnabled /t REG_DWORD /d 0 /f

# Verify current Chrome version
google-chrome --version
# Expected: Google Chrome 123.0.6312.86 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 Score7.7

  • EPSS Probability4.74%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-843
  • Technical References
  • Google Chrome Desktop Update

  • Chromium Issue Tracker Entry

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Zero Day Initiative Blog Post
  • 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