Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2026-6360

CVE-2026-6360: Google Chrome Use After Free Vulnerability

CVE-2026-6360 is a use after free vulnerability in Google Chrome's FileSystem component that allows remote attackers to exploit object corruption via crafted HTML. This article covers technical details, affected versions, and mitigations.

Published: April 17, 2026

CVE-2026-6360 Overview

CVE-2026-6360 is a Use After Free vulnerability in the FileSystem component of Google Chrome prior to version 147.0.7727.101. This memory corruption flaw allows a remote attacker to potentially exploit object corruption via a crafted HTML page, enabling arbitrary code execution within the browser context. The vulnerability is classified as high severity by the Chromium security team.

Critical Impact

Remote attackers can exploit this Use After Free vulnerability to achieve arbitrary code execution by luring victims to malicious web pages, potentially leading to complete system compromise.

Affected Products

  • Google Chrome prior to 147.0.7727.101
  • Chromium-based browsers using affected FileSystem component
  • All platforms running vulnerable Chrome versions (Windows, macOS, Linux)

Discovery Timeline

  • 2026-04-15 - CVE-2026-6360 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2026-6360

Vulnerability Analysis

This vulnerability is a classic Use After Free (CWE-416) memory corruption issue affecting the FileSystem API implementation in Google Chrome. 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 Chrome's FileSystem component, this allows attackers to manipulate freed memory regions and potentially corrupt objects in memory.

The FileSystem API provides web applications with a sandboxed file system for reading and writing files. When the underlying memory management improperly handles object lifecycles during file system operations, an attacker can craft malicious HTML content that triggers the premature deallocation of memory while references to that memory still exist. Subsequent operations on these dangling pointers can lead to object corruption.

Root Cause

The root cause lies in improper memory lifecycle management within Chrome's FileSystem implementation. When certain file system operations are performed in a specific sequence, the browser fails to properly track object references before deallocating memory. This creates a race condition where freed memory can be accessed through stale pointers, leading to exploitable object corruption.

The vulnerability is classified under CWE-416 (Use After Free), indicating that the code references memory after it has been freed, which can lead to program crashes, unexpected values, or code execution when the freed memory is reallocated and overwritten with attacker-controlled data.

Attack Vector

The attack requires user interaction—specifically, a victim must navigate to a malicious webpage containing the crafted HTML payload. Once the page loads, the exploit triggers the Use After Free condition in the FileSystem component. The attacker can then leverage heap manipulation techniques to control the contents of the freed memory region, ultimately achieving arbitrary code execution within the Chrome renderer process.

The vulnerability is exploitable over the network and requires no privileges on the target system beyond convincing a user to visit the malicious page. Successful exploitation could allow attackers to execute arbitrary code with the privileges of the browser process, potentially leading to information theft, malware installation, or further system compromise.

Due to the sensitive nature of this vulnerability and to protect users, specific exploitation details and proof-of-concept code are not provided. Technical details may be available through the Chromium Issue Tracker Entry once the vulnerability is sufficiently patched across the user base.

Detection Methods for CVE-2026-6360

Indicators of Compromise

  • Unexpected Chrome crashes or instability, particularly when interacting with web pages utilizing FileSystem APIs
  • Memory access violations or corruption errors in Chrome crash reports referencing FileSystem components
  • Suspicious HTML pages containing complex FileSystem API calls with unusual timing patterns

Detection Strategies

  • Monitor endpoint systems for Chrome versions below 147.0.7727.101 using asset management tools
  • Implement browser-based threat detection to identify malicious JavaScript patterns targeting FileSystem APIs
  • Deploy network monitoring to detect connections to known malicious domains serving exploit code
  • Enable Chrome's crash reporting to identify potential exploitation attempts through crash patterns

Monitoring Recommendations

  • Configure SIEM alerts for Chrome crash events that reference memory corruption in FileSystem modules
  • Monitor web proxy logs for suspicious HTML content with embedded FileSystem API manipulation
  • Track browser version compliance across the organization to identify unpatched installations
  • Review endpoint detection logs for post-exploitation indicators following browser-based attacks

How to Mitigate CVE-2026-6360

Immediate Actions Required

  • Update Google Chrome to version 147.0.7727.101 or later immediately across all endpoints
  • Enable automatic updates for Chrome to ensure timely patching of future vulnerabilities
  • Consider implementing browser isolation technologies for high-risk users until patching is complete
  • Educate users about the risks of visiting untrusted websites during the vulnerability window

Patch Information

Google has released Chrome version 147.0.7727.101 which addresses this vulnerability. Organizations should prioritize updating all Chrome installations to this version or later. The official release announcement is available through the Google Chrome Releases Blog.

For enterprise deployments, administrators can use Chrome Enterprise policies to enforce automatic updates or deploy the patched version through software distribution systems.

Workarounds

  • If immediate patching is not possible, consider temporarily restricting access to untrusted websites through web filtering
  • Enable Chrome's Site Isolation feature to limit the impact of renderer process compromises
  • Deploy endpoint detection and response (EDR) solutions to detect and block exploitation attempts
  • Consider using alternative browsers temporarily until Chrome can be updated in environments where patching delays are unavoidable
bash
# Verify Chrome version on Linux/macOS
google-chrome --version

# Enterprise deployment: Force Chrome update via command line
# Windows (run as administrator)
# "C:\Program Files\Google\Chrome\Application\chrome.exe" --check-for-update-interval=1

# macOS: Check for updates
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --version

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

  • 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 Blog Chrome Update

  • Chromium Issue Tracker Entry
  • Related CVEs
  • CVE-2026-6362: Google Chrome Codecs Use-After-Free Flaw

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

  • CVE-2026-6318: Google Chrome Codecs Use-After-Free Flaw

  • CVE-2026-6303: Google Chrome Codecs 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