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
    • 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-2023-0941

CVE-2023-0941: Google Chrome Use After Free Vulnerability

CVE-2023-0941 is a critical use after free vulnerability in Google Chrome's Prompts component that enables remote attackers to exploit heap corruption. This article covers technical details, affected versions, and mitigation.

Published: January 27, 2026

CVE-2023-0941 Overview

CVE-2023-0941 is a use after free vulnerability discovered in the Prompts component of Google Chrome prior to version 110.0.5481.177. This memory corruption flaw allows a remote attacker to potentially exploit heap corruption through a specially crafted HTML page. The Chromium security team has classified this vulnerability as Critical severity.

Use after free vulnerabilities occur when a program continues to use a pointer after the memory it references has been freed. In the context of browser security, this class of vulnerability is particularly dangerous as it can lead to arbitrary code execution within the browser's process, potentially allowing attackers to escape the browser sandbox or compromise user data.

Critical Impact

Remote attackers can potentially achieve heap corruption and code execution by convincing users to visit a malicious webpage containing crafted HTML content.

Affected Products

  • Google Chrome versions prior to 110.0.5481.177
  • Chromium-based browsers using affected Chrome components
  • All desktop platforms running vulnerable Chrome versions

Discovery Timeline

  • February 22, 2023 - CVE-2023-0941 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2023-0941

Vulnerability Analysis

This vulnerability resides in Chrome's Prompts component, which handles various browser dialog and prompt interactions with users. The use after free condition (CWE-416) occurs when the browser incorrectly manages memory during prompt-related operations, leading to a scenario where freed memory is subsequently accessed.

When exploited, this vulnerability can result in heap corruption, which attackers may leverage to achieve arbitrary code execution within the context of the Chrome renderer process. The attack requires user interaction—specifically, the victim must navigate to a malicious webpage—but requires no special privileges or authentication.

Root Cause

The root cause of CVE-2023-0941 is improper memory management in Chrome's Prompts component. The vulnerability stems from a use after free condition where an object in memory is freed but a reference (dangling pointer) to that memory location is retained and later dereferenced. When the browser attempts to access this freed memory, it may read or write to memory that has been reallocated for other purposes, leading to heap corruption.

This type of memory safety issue is common in C++ codebases like Chromium, where manual memory management can lead to complex object lifetime issues, particularly in asynchronous callback scenarios that are prevalent in browser prompt handling.

Attack Vector

The attack vector for this vulnerability is network-based, requiring user interaction. An attacker would need to:

  1. Create a malicious webpage containing specially crafted HTML content designed to trigger the use after free condition in the Prompts component
  2. Convince a victim to visit the malicious page through social engineering techniques such as phishing emails, malicious advertisements, or compromised legitimate websites
  3. Once the victim's vulnerable Chrome browser processes the crafted content, the heap corruption occurs

The crafted HTML page must manipulate the browser's prompt handling in a specific sequence to trigger the memory corruption condition. Successful exploitation could allow the attacker to execute arbitrary code within the browser process, potentially leading to further system compromise.

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

Detection Methods for CVE-2023-0941

Indicators of Compromise

  • Unexpected browser crashes or instability when viewing web content
  • Chrome crash reports indicating memory corruption in Prompts-related components
  • Suspicious outbound network connections following webpage visits
  • Anomalous process behavior spawned from Chrome browser processes

Detection Strategies

  • Monitor Chrome version across the enterprise to identify instances running versions prior to 110.0.5481.177
  • Implement endpoint detection rules to identify unusual memory allocation patterns or heap spray attempts in browser processes
  • Deploy network security monitoring to detect connections to known malicious domains that may host exploit pages
  • Review browser crash telemetry for patterns indicating exploitation attempts

Monitoring Recommendations

  • Enable Chrome's built-in crash reporting and review crash dumps for signs of memory corruption
  • Configure SIEM rules to alert on multiple Chrome crashes from the same endpoint in short time periods
  • Monitor for process injection or unexpected child process creation from Chrome
  • Implement browser isolation solutions to contain potential exploitation attempts

How to Mitigate CVE-2023-0941

Immediate Actions Required

  • Update Google Chrome to version 110.0.5481.177 or later immediately
  • Enable automatic updates for Chrome across all managed endpoints
  • Verify Chrome version compliance using endpoint management tools
  • Consider implementing browser isolation for high-risk users until patching is complete

Patch Information

Google has released a security update addressing this vulnerability in Chrome version 110.0.5481.177. The fix was announced on February 22, 2023, through the Google Chrome Update Announcement.

Organizations using Chromium-based browsers or embedded Chromium components should verify that their vendors have incorporated the patched Chromium version. Linux distributions such as Gentoo have released their own advisories—see the Gentoo GLSA 202309-17 Advisory for distribution-specific guidance.

To verify your Chrome version, navigate to chrome://settings/help or click the three-dot menu → Help → About Google Chrome. The browser will automatically check for and install available updates.

Workarounds

  • Implement browser isolation or sandboxing solutions to limit the impact of potential exploitation
  • Use web filtering to block access to untrusted or malicious websites
  • Deploy network-level protection to identify and block known exploit delivery domains
  • Consider temporarily using an alternative browser if immediate patching is not possible
bash
# Verify Chrome version on Linux systems
google-chrome --version
# Expected output should show version 110.0.5481.177 or higher

# Force Chrome update check on Windows (PowerShell)
# Navigate to chrome://settings/help in browser
# Or use enterprise deployment tools like SCCM/Intune for managed updates

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

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.25%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Chromium Bug Report #1415366

  • Gentoo GLSA 202309-17 Advisory
  • Vendor Resources
  • Google Chrome Update Announcement
  • Related CVEs
  • CVE-2026-7956: Google Chrome Use After Free Vulnerability

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

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

  • CVE-2026-7898: 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