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-2026-5861

CVE-2026-5861: Google Chrome V8 Use After Free Vulnerability

CVE-2026-5861 is a use after free vulnerability in V8 engine of Google Chrome that enables remote attackers to execute arbitrary code via crafted HTML pages. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-5861 Overview

CVE-2026-5861 is a use-after-free vulnerability in the V8 JavaScript engine in Google Chrome prior to version 147.0.7727.55. This memory corruption vulnerability allows a remote attacker to potentially execute arbitrary code inside a sandbox by enticing a victim to visit a malicious website containing a specially crafted HTML page. The vulnerability has been classified with high severity by the Chromium security team.

Critical Impact

Remote attackers can achieve arbitrary code execution within the Chrome sandbox through malicious web content, potentially enabling further exploitation or sandbox escape attempts.

Affected Products

  • Google Chrome prior to version 147.0.7727.55
  • Chromium-based browsers prior to the corresponding patched version
  • V8 JavaScript engine versions bundled with affected Chrome releases

Discovery Timeline

  • 2026-04-08 - CVE-2026-5861 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-5861

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a critical memory corruption issue where a program continues to reference memory after it has been deallocated. In the context of the V8 JavaScript engine, which handles JavaScript compilation and execution in Chrome, use-after-free vulnerabilities are particularly dangerous because they can be triggered remotely through malicious web content.

The V8 engine's just-in-time (JIT) compilation and garbage collection mechanisms create complex memory management scenarios. When memory is freed but pointers to that memory are not properly invalidated, subsequent use of those dangling pointers can lead to accessing reallocated memory controlled by an attacker.

Root Cause

The vulnerability stems from improper memory lifecycle management within the V8 JavaScript engine. A use-after-free condition occurs when an object is freed (returned to the memory allocator) but a reference to that object is retained and subsequently dereferenced. In V8, this typically involves:

  1. An object being created and referenced during JavaScript execution
  2. The garbage collector or explicit deallocation freeing the object's memory
  3. Retained references to the freed memory being accessed, potentially after the memory has been reallocated for a different purpose

Attack Vector

Exploitation of this vulnerability requires user interaction where a victim must navigate to a malicious website hosting a crafted HTML page. The attack flow involves:

  1. An attacker creates a specially crafted HTML page containing malicious JavaScript designed to trigger the use-after-free condition in V8
  2. The victim visits the attacker-controlled website or is redirected there through phishing or other social engineering techniques
  3. Chrome's V8 engine processes the malicious JavaScript, triggering the memory corruption
  4. The attacker achieves arbitrary code execution within Chrome's sandboxed renderer process

While code execution occurs within Chrome's sandbox, successful exploitation could be chained with sandbox escape vulnerabilities for more severe impact, or used for attacks that don't require escaping the sandbox such as credential theft or cryptocurrency mining.

For detailed technical information about this vulnerability, refer to the Google Chrome Stable Update and Chromium Issue Tracker #486927780.

Detection Methods for CVE-2026-5861

Indicators of Compromise

  • Unexpected Chrome renderer process crashes or memory access violations
  • Suspicious JavaScript execution patterns involving rapid object allocation and deallocation
  • Chrome stability issues when visiting specific websites
  • Anomalous memory consumption patterns in the browser process

Detection Strategies

  • Monitor browser crash reports for patterns indicating V8 memory corruption
  • Implement endpoint detection rules for abnormal Chrome process behavior
  • Deploy network monitoring to identify traffic to known malicious domains serving exploit code
  • Utilize browser telemetry to detect exploitation attempts through JavaScript execution anomalies

Monitoring Recommendations

  • Enable Chrome's built-in crash reporting and monitor for V8-related crashes
  • Configure enterprise browser management tools to track Chrome version compliance
  • Implement web filtering to block access to known exploit hosting infrastructure
  • Review endpoint logs for repeated browser crashes that may indicate exploitation attempts

How to Mitigate CVE-2026-5861

Immediate Actions Required

  • Update Google Chrome to version 147.0.7727.55 or later immediately
  • Enable automatic updates for Chrome to receive future security patches promptly
  • Review and restrict access to untrusted websites through web filtering policies
  • Consider disabling JavaScript on untrusted sites via Chrome's site settings until patching is complete

Patch Information

Google has addressed this vulnerability in Chrome version 147.0.7727.55. Organizations should prioritize updating all Chrome installations to this version or later. The fix can be verified by navigating to chrome://settings/help and confirming the browser version is 147.0.7727.55 or higher.

For more information about the patch, see the Google Chrome Stable Update announcement.

Workarounds

  • Temporarily disable JavaScript execution for untrusted websites using Chrome's site permissions settings
  • Enable Chrome's Site Isolation feature if not already active for additional process-level protection
  • Use browser extensions that provide script blocking capabilities for untrusted sites
  • Restrict browsing to trusted and necessary websites until the update can be applied
bash
# Verify Chrome version on Linux/macOS
google-chrome --version

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

# Enterprise deployment: Use group policy or MDM to enforce minimum version
# Windows GPO path: Computer Configuration > Administrative Templates > Google > Google Chrome > Minimum Google Chrome version

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.04%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-416
  • Technical References
  • Google Chrome Stable Update

  • Chromium Issue Tracker #486927780
  • Related CVEs
  • CVE-2026-9126: Google Chrome DOM Use-After-Free Flaw

  • CVE-2026-9120: Google Chrome WebRTC Use-After-Free Flaw

  • CVE-2026-9118: Google Chrome XR Use-After-Free Flaw

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