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-2020-6457

CVE-2020-6457: Google Chrome Use After Free Vulnerability

CVE-2020-6457 is a use after free vulnerability in Google Chrome's speech recognizer that enables sandbox escape attacks. This article covers the technical details, affected versions, security impact, and mitigation.

Updated: May 16, 2026

CVE-2020-6457 Overview

CVE-2020-6457 is a use-after-free vulnerability in the speech recognizer component of Google Chrome versions prior to 81.0.4044.113. A remote attacker can exploit this flaw through a crafted HTML page to corrupt memory in the browser process. Successful exploitation can lead to a sandbox escape, allowing attacker-controlled code to break out of Chrome's renderer sandbox boundary. The issue is tracked under CWE-416 and affects Chrome on all supported desktop platforms, as well as Debian GNU/Linux 9 and 10 distributions that ship Chromium-based packages.

Critical Impact

Remote attackers can trigger memory corruption via a malicious web page and potentially escape the Chrome sandbox to execute code with elevated browser privileges.

Affected Products

  • Google Chrome prior to 81.0.4044.113
  • Debian GNU/Linux 9 (Stretch)
  • Debian GNU/Linux 10 (Buster)

Discovery Timeline

  • 2020-05-21 - CVE-2020-6457 published to the National Vulnerability Database (NVD)
  • 2024-11-21 - Last updated in the NVD database

Technical Details for CVE-2020-6457

Vulnerability Analysis

The vulnerability resides in Chrome's speech recognizer subsystem, which handles Web Speech API requests originating from web content. A use-after-free condition occurs when the speech recognizer continues to reference an object after its backing memory has been freed. An attacker can manipulate the lifecycle of speech recognition objects from a crafted HTML page to control the freed allocation. Because the speech recognizer runs in a privileged browser-side process and communicates with the renderer through IPC, successful memory corruption crosses the sandbox boundary. This elevates the impact from a renderer compromise to a potential browser process compromise.

Root Cause

The root cause is improper object lifetime management within the speech recognizer (CWE-416). Code paths retain pointers to objects that have already been released, enabling dereference of dangling pointers when subsequent operations are triggered. Attackers can reclaim the freed region with attacker-controlled data to influence program flow. Additional context is available in the Chromium Bug Report #1067851.

Attack Vector

Exploitation requires a victim to load a malicious or compromised web page using a vulnerable version of Chrome. The attack vector is network-based and requires user interaction limited to visiting the page. The vulnerability scope changes because exploitation pivots from renderer to browser process, making it a sandbox escape candidate when chained with a renderer bug. No authentication is required, and the attacker does not need prior access to the target system. Refer to the Google Chrome stable channel update for desktop for vendor confirmation.

Verified exploitation code is not publicly available. The vulnerability mechanism is described in the Chromium issue tracker referenced above.

Detection Methods for CVE-2020-6457

Indicators of Compromise

  • Unexpected Chrome browser process crashes accompanied by access violation or segmentation fault events in operating system crash logs.
  • Outbound network connections from chrome.exe or chromium to uncategorized or newly registered domains hosting Web Speech API content.
  • Creation of child processes or file writes by Chrome that deviate from normal browser behavior, indicating post-exploitation activity.

Detection Strategies

  • Inventory installed Chrome and Chromium-based browser versions across endpoints and flag any build older than 81.0.4044.113.
  • Correlate browser crash telemetry with web navigation history to identify pages that consistently trigger renderer or browser process termination.
  • Monitor for anomalous process trees originating from the Chrome browser process, particularly spawned shells, scripting engines, or LOLBins.

Monitoring Recommendations

  • Enable centralized collection of Chrome crash dumps and browser telemetry to support retrospective hunting.
  • Track DNS and HTTP telemetry for visits to pages invoking the Web Speech API from unmanaged or untrusted origins.
  • Alert on Chrome processes loading unexpected modules or making suspicious system calls following navigation to external content.

How to Mitigate CVE-2020-6457

Immediate Actions Required

  • Update Google Chrome to version 81.0.4044.113 or later on all Windows, macOS, and Linux endpoints.
  • Apply Debian security updates for Chromium packages on Debian 9 and Debian 10 systems, as outlined in Debian Security Advisory DSA-4714.
  • Restart all browser instances after patching to ensure the vulnerable process is terminated and replaced.

Patch Information

Google released the fix in the Chrome stable channel update 81.0.4044.113. Details are documented in the Google Chrome stable channel update for desktop. Debian shipped patched Chromium builds via Debian Security Advisory DSA-4714. Enterprise administrators should verify Chrome auto-update policies are enabled and unobstructed by proxy or firewall configurations.

Workarounds

  • Restrict access to the Web Speech API through enterprise browser policies until patching is complete.
  • Deploy URL filtering to block navigation to untrusted external sites from systems running vulnerable Chrome builds.
  • Where immediate patching is not feasible, isolate at-risk endpoints from sensitive network segments to limit the blast radius of a successful sandbox escape.
bash
# Verify the installed Chrome version on Linux endpoints
google-chrome --version

# Update Chromium on Debian systems
sudo apt-get update && sudo apt-get install --only-upgrade 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 Probability1.06%

  • 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
  • Debian Security Advisory DSA-4714
  • Vendor Resources
  • Google Chrome Update Announcement

  • Chrome Bug Report #1067851
  • 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