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

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

CVE-2021-30633 is a use after free vulnerability in Google Chrome's Indexed DB API that enables sandbox escape attacks. This article covers the technical details, affected versions, security impact, and mitigation.

Published: March 4, 2026

CVE-2021-30633 Overview

CVE-2021-30633 is a critical use-after-free vulnerability in the Indexed DB API of Google Chrome prior to version 93.0.4577.82. This memory corruption flaw allows a remote attacker who has already compromised the renderer process to potentially escape the browser's sandbox and execute arbitrary code on the underlying system. The vulnerability can be triggered through a specially crafted HTML page, making it exploitable via malicious websites or drive-by download attacks.

Critical Impact

This vulnerability has been actively exploited in the wild and is listed in CISA's Known Exploited Vulnerabilities Catalog. The sandbox escape capability makes this particularly dangerous as it allows attackers to break out of Chrome's security isolation and gain broader system access.

Affected Products

  • Google Chrome versions prior to 93.0.4577.82
  • Fedora Project Fedora 33
  • Fedora Project Fedora 35

Discovery Timeline

  • October 8, 2021 - CVE-2021-30633 published to NVD
  • October 24, 2025 - Last updated in NVD database

Technical Details for CVE-2021-30633

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a memory corruption vulnerability that occurs when a program continues to use a pointer after the memory it references has been freed. In the context of Google Chrome's Indexed DB API, this flaw exists in how the browser handles database operations and object lifecycle management.

The Indexed DB API is a low-level JavaScript API for storing significant amounts of structured data in the browser. The use-after-free condition arises when database objects or transactions are freed prematurely while still being referenced elsewhere in the code. An attacker who has already achieved renderer process compromise can leverage this memory corruption primitive to manipulate freed memory, potentially achieving arbitrary read/write capabilities.

What makes this vulnerability particularly severe is the sandbox escape potential. Chrome's multi-process architecture isolates the renderer process from the rest of the system using a sandbox. By exploiting this use-after-free condition, an attacker can bypass these sandbox protections and execute code with the privileges of the browser process itself, significantly expanding the attack surface.

Root Cause

The root cause lies in improper object lifecycle management within the Indexed DB API implementation. When database objects are deallocated, references to these objects are not properly invalidated, creating dangling pointers. Subsequent operations that attempt to access these invalid references trigger the use-after-free condition.

The vulnerability specifically manifests in scenarios where asynchronous database operations interact with object cleanup routines, creating race conditions or timing windows that allow freed memory to be accessed before proper cleanup of all references.

Attack Vector

The attack requires a remote attacker to first compromise the Chrome renderer process through another vulnerability or attack vector. Once renderer compromise is achieved, the attacker can then deliver a crafted HTML page containing malicious JavaScript that triggers the use-after-free condition in the Indexed DB API.

The exploitation chain typically involves:

  1. Initial renderer process compromise through a separate vulnerability
  2. Delivery of a specially crafted HTML page to the victim
  3. JavaScript execution that manipulates Indexed DB operations to trigger the use-after-free
  4. Memory corruption exploitation to achieve arbitrary code execution outside the sandbox

The network-based attack vector combined with the requirement for user interaction (visiting a malicious page) makes this exploitable through phishing campaigns or compromised websites.

Detection Methods for CVE-2021-30633

Indicators of Compromise

  • Unusual Chrome process behavior including unexpected child process spawning with elevated privileges
  • Memory access violations or crashes within Chrome's Indexed DB components logged in system event logs
  • Suspicious JavaScript execution patterns involving intensive Indexed DB API calls and object manipulation
  • Evidence of sandbox escape attempts such as file system access or network connections from Chrome processes that should be sandboxed

Detection Strategies

  • Monitor for Chrome versions below 93.0.4577.82 across enterprise endpoints using endpoint detection and response (EDR) solutions
  • Implement browser-level telemetry to detect anomalous Indexed DB API usage patterns
  • Deploy network monitoring to identify malicious HTML pages attempting to exploit this vulnerability through known exploit signatures
  • Correlate Chrome crash reports with Indexed DB-related stack traces to identify potential exploitation attempts

Monitoring Recommendations

  • Enable enhanced Chrome logging and forward logs to SIEM for analysis of renderer process anomalies
  • Implement real-time endpoint monitoring for memory corruption indicators in browser processes
  • Monitor for CISA KEV-related threat intelligence feeds to identify associated attack campaigns targeting this vulnerability
  • Review web proxy logs for access to known malicious domains distributing exploit code

How to Mitigate CVE-2021-30633

Immediate Actions Required

  • Upgrade Google Chrome to version 93.0.4577.82 or later immediately across all enterprise endpoints
  • For Fedora systems, apply the security updates provided in the Fedora package announcements
  • Enforce browser auto-update policies to prevent users from running vulnerable Chrome versions
  • Consider temporarily restricting access to untrusted websites until patching is complete

Patch Information

Google has released a security update addressing this vulnerability in Chrome version 93.0.4577.82. The fix properly handles object lifecycle management in the Indexed DB API, ensuring that freed memory references are properly invalidated. For detailed information about the security update, refer to the Chrome Desktop Update Announcement.

Fedora users should apply the security updates available through the Fedora Package Announcements.

Given this vulnerability is listed in the CISA Known Exploited Vulnerabilities Catalog, organizations subject to CISA directives must prioritize remediation according to applicable deadlines.

Workarounds

  • Deploy web filtering to block known malicious domains and URLs associated with exploitation attempts
  • Implement network segmentation to limit the impact of potential sandbox escapes
  • Enable Chrome's Site Isolation feature to provide additional renderer process isolation
  • Consider deploying browser isolation solutions for high-risk users who may be targeted by sophisticated attacks
bash
# Verify Chrome version on Linux/macOS
google-chrome --version
# Expected output: Google Chrome 93.0.4577.82 or higher

# Force Chrome update check on enterprise deployments
# Using Chrome Browser Cloud Management or Group Policy

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 Probability28.32%

  • 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
  • CISA KEV Information
  • In CISA KEVYes
  • CWE References
  • CWE-416
  • Technical References
  • Chrome Desktop Update Announcement

  • Chrome Bug Report #1247766

  • Fedora Package Announcement

  • Fedora Package Announcement

  • CISA Exploited Vulnerabilities Catalog
  • Related CVEs
  • CVE-2026-5914: Google Chrome CSS Type Confusion Vulnerability

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

  • CVE-2026-5904: Google Chrome V8 Use-After-Free Flaw

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