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-2025-1916

CVE-2025-1916: Google Chrome Use After Free Vulnerability

CVE-2025-1916 is a use after free vulnerability in Google Chrome Profiles that enables heap corruption through malicious extensions. This article covers technical details, affected versions, security impact, and mitigation.

Updated: January 22, 2026

CVE-2025-1916 Overview

CVE-2025-1916 is a Use After Free vulnerability in the Profiles component of Google Chrome prior to version 134.0.6998.35. This memory corruption flaw allows an attacker who convinces a user to install a malicious extension to potentially exploit heap corruption via a crafted HTML page. The vulnerability requires user interaction but can lead to serious consequences including arbitrary code execution within the browser context.

Critical Impact

Successful exploitation could allow attackers to execute arbitrary code, compromise browser integrity, access sensitive user data, and potentially gain control over the affected system through heap corruption.

Affected Products

  • Google Chrome versions prior to 134.0.6998.35
  • All platforms running vulnerable Chrome versions (Windows, macOS, Linux)
  • Chromium-based browsers potentially affected

Discovery Timeline

  • 2025-03-05 - CVE-2025-1916 published to NVD
  • 2025-04-01 - Last updated in NVD database

Technical Details for CVE-2025-1916

Vulnerability Analysis

This Use After Free vulnerability (CWE-416) exists in the Profiles component of Google Chrome. Use After Free conditions occur when memory that has been freed is subsequently accessed, leading to undefined behavior. In this case, the vulnerability manifests when handling profile-related operations, where a memory reference persists after the underlying object has been deallocated.

The attack requires the victim to install a malicious browser extension, which then serves as the delivery mechanism for crafted HTML content. When the vulnerable code path is triggered, the freed memory can be reclaimed and populated with attacker-controlled data, enabling heap corruption and potential code execution.

Root Cause

The root cause stems from improper memory management in Chrome's Profiles component. When profile-related objects are deallocated, references to those objects are not properly invalidated in all code paths. This dangling pointer can then be dereferenced during subsequent operations triggered by malicious extension code, leading to the use of freed memory. The vulnerability specifically relates to how Chrome manages profile state transitions and extension interactions with the profile system.

Attack Vector

The attack requires a network-based delivery mechanism with user interaction. An attacker must first convince the target user to install a malicious Chrome extension. Once installed, the extension can craft specific HTML content and trigger profile operations that exploit the Use After Free condition. The malicious extension serves as both the delivery mechanism and the trigger for the vulnerable code path.

The exploitation chain involves:

  1. Social engineering to install a malicious extension
  2. Extension delivers crafted HTML page content
  3. HTML triggers profile operations causing heap corruption
  4. Attacker gains code execution within the browser sandbox

The vulnerability mechanism involves improper lifecycle management in Chrome's profile handling code. When profile-related objects are processed, certain code paths fail to properly validate memory references after deallocation events. A malicious extension can manipulate this timing to access freed memory containing attacker-controlled data. For detailed technical information, see the Chromium Issue Tracker Entry.

Detection Methods for CVE-2025-1916

Indicators of Compromise

  • Presence of unfamiliar or recently installed browser extensions with excessive permissions
  • Chrome crash reports indicating heap corruption in profile-related modules
  • Unusual browser behavior following extension installation, including unexpected profile switches
  • Memory access violations in Chrome process logs referencing profile components

Detection Strategies

  • Monitor Chrome version across endpoints and flag installations running versions prior to 134.0.6998.35
  • Implement endpoint detection rules for suspicious extension installations requesting profile access
  • Deploy browser extension whitelisting policies to prevent unauthorized extension installation
  • Analyze Chrome crash dumps for signatures consistent with Use After Free exploitation

Monitoring Recommendations

  • Enable Chrome enterprise logging to capture extension installation and profile operation events
  • Configure SIEM rules to alert on multiple Chrome crashes from the same endpoint
  • Monitor for lateral movement or data exfiltration attempts following browser anomalies
  • Track extension permission changes that could indicate compromise preparation

How to Mitigate CVE-2025-1916

Immediate Actions Required

  • Update Google Chrome to version 134.0.6998.35 or later immediately across all systems
  • Audit installed browser extensions and remove any unrecognized or suspicious extensions
  • Implement browser extension installation policies to require administrator approval
  • Enable Chrome's Enhanced Safe Browsing to improve protection against malicious extensions

Patch Information

Google has addressed this vulnerability in Chrome version 134.0.6998.35, released in March 2025. The fix properly manages memory lifecycle in the Profiles component, ensuring references are invalidated when objects are freed. Organizations should deploy this update through their standard patch management processes. For full details, see the Google Chrome Desktop Update.

Workarounds

  • Restrict Chrome extension installation to only approved extensions via enterprise policy
  • Implement browser isolation technologies to contain potential exploitation impact
  • Consider using Chrome's --disable-extensions flag in high-security environments where extensions are not required
  • Deploy network-based controls to block access to known malicious extension distribution sites
bash
# Chrome enterprise policy configuration to restrict extensions
# Configure via Group Policy or Chrome Enterprise policies

# Block all extensions except approved list (Windows Registry)
# HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome\ExtensionInstallBlocklist
# Set value "*" to block all extensions by default

# Allowlist specific approved extensions
# HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome\ExtensionInstallAllowlist
# Add approved extension IDs

# Force Chrome auto-update to ensure latest patches
# HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update\UpdateDefault = 1

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

  • 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
  • Google Chrome Desktop Update

  • Chromium Issue Tracker Entry
  • 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