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

CVE-2025-68805: Linux Kernel Use-After-Free Vulnerability

CVE-2025-68805 is a use-after-free vulnerability in the Linux kernel fuse component caused by list corruption when requests are terminated before commitment. This post covers technical details, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-68805 Overview

A vulnerability has been discovered in the Linux kernel's FUSE (Filesystem in Userspace) subsystem related to io-uring request handling. When a request is terminated before it has been committed, the request is not properly removed from the queue's list. This leaves a dangling list entry that can lead to list corruption and use-after-free conditions, potentially compromising system stability and security.

Critical Impact

This vulnerability can result in list corruption and use-after-free issues in the Linux kernel, potentially allowing attackers to cause system instability, denial of service, or achieve privilege escalation through memory corruption.

Affected Products

  • Linux kernel with FUSE and io-uring support enabled
  • Systems utilizing FUSE filesystems with io-uring operations
  • Linux distributions running vulnerable kernel versions

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-68805 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-68805

Vulnerability Analysis

This vulnerability resides in the FUSE subsystem's handling of io-uring requests within the Linux kernel. The core issue stems from improper cleanup of request structures when a request is terminated before reaching its committed state.

Under normal operation, when a FUSE request completes its lifecycle, it should be properly removed from the associated queue's linked list. However, in the vulnerable code path, when a request is terminated prematurely (before being committed), the request structure remains on the queue's list even after the memory for that request may be freed or reused.

This creates a classic use-after-free scenario where the linked list continues to reference memory that is no longer valid. Subsequent operations on the queue may traverse this dangling pointer, leading to list corruption when the kernel attempts to read or write to the freed memory location.

Root Cause

The root cause of this vulnerability is the absence of proper list removal logic for terminated non-committed requests in the FUSE io-uring code path. When a request enters the terminated state without first being committed, the cleanup code fails to remove the request from the queue's list data structure. This oversight leaves a stale entry in the list that points to potentially freed memory.

Attack Vector

The attack vector for this vulnerability involves triggering the termination of FUSE io-uring requests before they reach the committed state. An attacker with local access could potentially:

  1. Create conditions that cause io-uring requests to the FUSE filesystem to terminate early
  2. Repeatedly trigger this condition to create multiple dangling list entries
  3. Exploit the resulting memory corruption through carefully timed operations

The vulnerability requires local access and the ability to interact with FUSE filesystems using io-uring, limiting the attack surface to local privilege escalation scenarios.

Detection Methods for CVE-2025-68805

Indicators of Compromise

  • Kernel log messages indicating list corruption in FUSE or io-uring subsystems
  • Unexpected system crashes or kernel panics during FUSE filesystem operations
  • Memory corruption warnings such as list_del corruption or use-after-free detected by KASAN
  • Anomalous behavior during io-uring operations on FUSE-mounted filesystems

Detection Strategies

  • Enable Kernel Address Sanitizer (KASAN) to detect use-after-free conditions at runtime
  • Monitor kernel logs for list corruption errors related to FUSE subsystem
  • Deploy kernel runtime integrity monitoring solutions to detect memory corruption
  • Use SentinelOne's Singularity platform to monitor for kernel-level anomalies and exploitation attempts

Monitoring Recommendations

  • Configure system logging to capture kernel warnings and errors related to FUSE and io-uring
  • Implement alerting on kernel panic events, particularly those referencing memory corruption
  • Monitor for unusual patterns of FUSE filesystem activity that could indicate exploitation attempts
  • Enable kernel crash dump analysis for post-incident forensic investigation

How to Mitigate CVE-2025-68805

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the fix for this vulnerability
  • If immediate patching is not possible, consider disabling io-uring for FUSE filesystems as a temporary measure
  • Review and audit systems that utilize FUSE filesystems for signs of exploitation
  • Monitor kernel logs for any indicators of list corruption or use-after-free conditions

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix ensures that terminated non-committed requests are properly removed from the queue's list, preventing the dangling list entry condition.

Patch commits are available in the stable kernel tree:

  • Kernel Git Commit 95c39eef7c2b
  • Kernel Git Commit a6d1f1ace16d

System administrators should apply these patches through their distribution's standard update mechanisms or by compiling a patched kernel from source.

Workarounds

  • Disable io-uring support for FUSE filesystems if patching is not immediately feasible
  • Limit local user access to systems running vulnerable kernel versions
  • Consider using alternative filesystem mounting mechanisms that do not rely on the vulnerable FUSE io-uring code path
  • Implement strict access controls on FUSE mount operations to reduce the attack surface
bash
# Check current kernel version
uname -r

# Verify if FUSE module is loaded
lsmod | grep fuse

# Monitor kernel logs for corruption indicators
dmesg | grep -i "list.*corruption\|use-after-free\|fuse"

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/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31469: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31457: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-31444: Linux Kernel 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