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-2021-38002

CVE-2021-38002: Google Chrome Use After Free Vulnerability

CVE-2021-38002 is a use after free vulnerability in Google Chrome's Web Transport component that enables remote attackers to escape the sandbox. This article covers technical details, affected versions, and mitigation strategies.

Published: February 25, 2026

CVE-2021-38002 Overview

CVE-2021-38002 is a Use After Free vulnerability in the Web Transport component of Google Chrome prior to version 95.0.4638.69. This memory corruption flaw allows a remote attacker to potentially perform a sandbox escape through a specially crafted HTML page. The vulnerability exists in Chrome's implementation of the WebTransport API, which provides bidirectional transport capabilities for web applications.

Critical Impact

This vulnerability enables remote attackers to escape Chrome's sandbox protection mechanism, potentially gaining elevated privileges on the victim's system through a maliciously crafted web page.

Affected Products

  • Google Chrome versions prior to 95.0.4638.69
  • Fedora Project Fedora 34
  • Debian Linux 10.0 and 11.0

Discovery Timeline

  • 2021-11-23 - CVE-2021-38002 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2021-38002

Vulnerability Analysis

This Use After Free (CWE-416) vulnerability occurs within Chrome's Web Transport implementation. Use After Free conditions arise when a program continues to reference memory after it has been freed, leading to undefined behavior. In this case, the Web Transport component improperly manages object lifetimes, allowing an attacker to manipulate memory state through carefully constructed HTML content.

The critical nature of this vulnerability stems from its ability to enable sandbox escape. Chrome employs a multi-process architecture with sandbox isolation to contain the impact of security vulnerabilities. However, CVE-2021-38002 allows attackers to bypass these protections, potentially gaining code execution outside the sandboxed renderer process.

Root Cause

The vulnerability originates from improper memory management in the Web Transport API implementation. When certain objects are freed during WebTransport operations, references to these objects may still exist and be subsequently accessed. This dangling pointer condition can be triggered through specific sequences of operations initiated by malicious JavaScript code within a crafted HTML page.

Attack Vector

The attack requires user interaction, specifically visiting a malicious webpage or being redirected to one. The attack vector is network-based, with the attacker hosting or injecting a crafted HTML page containing malicious content that exploits the Use After Free condition. Upon successful exploitation:

  1. The victim visits the attacker-controlled webpage
  2. Malicious JavaScript triggers the Use After Free condition in Web Transport
  3. The attacker gains control of freed memory through heap manipulation
  4. The corrupted memory state enables sandbox escape
  5. Arbitrary code execution may occur outside Chrome's sandbox

The vulnerability is particularly dangerous because sandbox escape allows attackers to interact directly with the underlying operating system, bypassing Chrome's security boundaries.

Detection Methods for CVE-2021-38002

Indicators of Compromise

  • Unusual Chrome renderer process crashes or unexpected behavior when visiting web pages
  • Suspicious network connections originating from Chrome to unknown destinations
  • Anomalous child processes spawned by Chrome browser processes
  • Memory access violations logged in system crash reports

Detection Strategies

  • Monitor for Chrome versions prior to 95.0.4638.69 in your environment using software inventory tools
  • Implement network monitoring to detect connections to known malicious infrastructure
  • Deploy endpoint detection solutions to identify suspicious process behavior following Chrome exploitation
  • Review crash dumps and error reports for patterns consistent with Use After Free exploitation

Monitoring Recommendations

  • Enable Chrome's built-in Safe Browsing protection to block known malicious pages
  • Configure SIEM rules to alert on Chrome-related crash events across endpoints
  • Monitor for unusual WebTransport API usage patterns in network traffic analysis
  • Implement browser extension policies to restrict access to potentially malicious sites

How to Mitigate CVE-2021-38002

Immediate Actions Required

  • Update Google Chrome to version 95.0.4638.69 or later immediately
  • Verify Chrome auto-update functionality is enabled and functioning correctly
  • Deploy updated Chrome packages through enterprise software management systems
  • Audit all systems for vulnerable Chrome versions and prioritize remediation

Patch Information

Google released a security update addressing CVE-2021-38002 on October 28, 2021. The patch is included in Chrome version 95.0.4638.69 and all subsequent releases. Organizations should reference the Google Chrome Stable Channel Update Announcement for complete patch details. Additional security advisories have been issued by distribution maintainers, including the Debian Security Advisory DSA-5046 for Debian Linux users.

Workarounds

  • Restrict access to untrusted websites through web filtering or proxy solutions until patching is complete
  • Consider temporarily disabling WebTransport functionality via Chrome enterprise policies if business requirements permit
  • Implement network segmentation to limit potential impact of sandbox escape exploitation
  • Enable Chrome's Site Isolation feature for additional process-level protection
bash
# Verify Chrome version on Linux systems
google-chrome --version

# Update Chrome on Debian/Ubuntu
sudo apt update && sudo apt upgrade google-chrome-stable

# Update Chrome on Fedora
sudo dnf update chromium

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

  • SeverityCRITICAL

  • CVSS Score9.6

  • EPSS Probability0.83%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Fedora Package Announcement

  • Debian Security Advisory DSA-5046
  • Vendor Resources
  • Google Chrome Update Announcement

  • Chromium Bug Report #1260940
  • Related CVEs
  • CVE-2026-5281: Google Chrome Use After Free Vulnerability

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

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

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