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-2022-0973

CVE-2022-0973: Google Chrome Use After Free Vulnerability

CVE-2022-0973 is a use after free vulnerability in Google Chrome's Safe Browsing feature that enables remote attackers to exploit heap corruption through crafted HTML pages. This article covers technical details, affected versions, and mitigation.

Published: February 17, 2026

CVE-2022-0973 Overview

CVE-2022-0973 is a use-after-free vulnerability in the Safe Browsing component of Google Chrome prior to version 99.0.4844.74. This memory corruption flaw allows a remote attacker to potentially exploit heap corruption via a crafted HTML page, leading to arbitrary code execution within the context of the browser.

Critical Impact

Remote attackers can exploit heap corruption through malicious web pages, potentially achieving code execution with user privileges and browser sandbox escape.

Affected Products

  • Google Chrome versions prior to 99.0.4844.74
  • Chromium-based browsers using vulnerable Safe Browsing implementations

Discovery Timeline

  • 2022-07-21 - CVE-2022-0973 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-0973

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a memory safety issue where a program continues to reference memory after it has been freed. In the context of Google Chrome's Safe Browsing component, this flaw occurs when the browser processes specially crafted HTML content.

The Safe Browsing feature is responsible for protecting users from malicious websites, phishing attempts, and dangerous downloads. When processing certain malicious HTML pages, the component incorrectly handles memory deallocation, leaving dangling pointers that can be exploited by attackers.

The network-based attack vector means that exploitation can occur remotely through malicious web content. The scope change characteristic indicates that successful exploitation can affect resources beyond the vulnerable component's security scope, potentially allowing sandbox escape.

Root Cause

The root cause of CVE-2022-0973 lies in improper memory management within the Safe Browsing component. When certain objects are freed during HTML page processing, references to those objects are not properly invalidated. Subsequent use of these dangling pointers leads to use-after-free conditions.

This type of vulnerability is particularly dangerous in browser contexts because:

  • The heap layout can be manipulated through JavaScript
  • Freed memory can be reclaimed with attacker-controlled data
  • Successful exploitation can lead to arbitrary code execution

Attack Vector

The attack is network-based and requires user interaction—specifically, a victim must visit a malicious webpage containing the crafted HTML payload. The attacker hosts or injects malicious HTML content that triggers the use-after-free condition when processed by Chrome's Safe Browsing component.

The exploitation flow involves:

  1. The attacker crafts a malicious HTML page designed to trigger specific memory allocation and deallocation patterns
  2. The victim navigates to the malicious page using a vulnerable Chrome version
  3. The Safe Browsing component processes the page and frees certain memory objects
  4. The attacker's payload triggers reuse of the freed memory with controlled data
  5. Heap corruption occurs, potentially allowing arbitrary code execution

For detailed technical information about this vulnerability, refer to the Chromium Bug Report #1297498 and the Google Chrome Stable Update announcement.

Detection Methods for CVE-2022-0973

Indicators of Compromise

  • Unexpected Chrome crashes or instability when visiting certain websites
  • Chrome memory usage anomalies or heap corruption errors in crash dumps
  • Suspicious outbound connections originating from Chrome processes
  • Evidence of browser sandbox escape attempts in system logs

Detection Strategies

  • Monitor Chrome version across enterprise endpoints to identify instances running versions prior to 99.0.4844.74
  • Deploy endpoint detection solutions capable of identifying heap corruption exploitation patterns
  • Implement browser telemetry collection to detect anomalous Safe Browsing component behavior
  • Utilize memory protection technologies to detect use-after-free exploitation attempts

Monitoring Recommendations

  • Configure centralized logging for browser crash reports and analyze for heap corruption signatures
  • Implement network monitoring to detect potential exploit delivery via malicious web pages
  • Deploy SentinelOne agents to detect post-exploitation activities following browser compromise
  • Monitor for unusual child processes spawned by Chrome that may indicate sandbox escape

How to Mitigate CVE-2022-0973

Immediate Actions Required

  • Update Google Chrome to version 99.0.4844.74 or later immediately across all endpoints
  • Enable automatic Chrome updates to ensure timely patch deployment
  • Audit enterprise environments for any Chrome installations running vulnerable versions
  • Consider implementing browser isolation for high-risk users pending patch deployment

Patch Information

Google addressed this vulnerability in the Chrome Stable Channel update released on March 15, 2022. The fix is included in Chrome version 99.0.4844.74 and all subsequent releases.

Users should update their Chrome installations immediately by navigating to chrome://settings/help or enabling automatic updates. Enterprise administrators should deploy updates through their management infrastructure.

For additional details, consult the Google Chrome Stable Channel Update and the Gentoo GLSA 202208-25 security advisory.

Workarounds

  • Limit access to untrusted websites using web filtering or proxy solutions until patches can be applied
  • Consider using alternative browsers temporarily for high-risk browsing activities
  • Implement strict site isolation in Chrome via chrome://flags/#site-isolation-trial-opt-out
  • Deploy network-level protections to block known malicious domains
bash
# Verify Chrome version on Linux/macOS
google-chrome --version

# Force Chrome update check
# Navigate to chrome://settings/help in the browser

# Enterprise deployment - update Chrome via package manager (Debian/Ubuntu)
sudo apt update && sudo apt install --only-upgrade google-chrome-stable

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

  • 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
  • Gentoo GLSA 202208-25
  • Vendor Resources
  • Google Chrome Stable Update

  • Chromium Bug Report #1297498
  • 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