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-23109

CVE-2026-23109: Linux Kernel Writeback DOS Vulnerability

CVE-2026-23109 is a denial of service flaw in the Linux kernel's writeback mechanism that can cause indefinite system hangs with faulty fuse servers. This article covers the technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2026-23109 Overview

A vulnerability has been discovered in the Linux kernel's filesystem writeback mechanism, specifically in the wait_sb_inodes() function. The issue involves improper handling of AS_NO_DATA_INTEGRITY mappings, which can cause the kernel to wait indefinitely when synchronizing filesystems. This particularly affects FUSE (Filesystem in Userspace) implementations where a faulty FUSE server that does not reply to issued write requests can cause wait_sb_inodes() to hang forever, resulting in a denial of service condition.

Critical Impact

A faulty or malicious FUSE server can cause system hangs by not responding to write requests, leading to indefinite waiting in the writeback subsystem during filesystem sync operations.

Affected Products

  • Linux kernel (versions prior to the security patch)
  • Systems using FUSE (Filesystem in Userspace)
  • Systems performing filesystem sync operations with non-data-integrity mappings

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-23109 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-23109

Vulnerability Analysis

The vulnerability exists in the Linux kernel's fs/writeback subsystem, specifically within the wait_sb_inodes() function. This function is responsible for waiting for all pages under writeback to complete for data integrity purposes during filesystem synchronization operations.

The core issue is that the function was not properly checking for AS_NO_DATA_INTEGRITY mappings before waiting. Filesystems like FUSE traditionally do not have data integrity semantics, meaning sync operations should effectively be no-ops for these filesystems. However, without the proper check, the kernel would attempt to wait for writeback completion on FUSE inodes.

When a FUSE server is faulty or unresponsive and does not reply to issued write requests, this causes the wait_sb_inodes() function to wait indefinitely, leading to a system hang. This represents a user-space regression where legitimate FUSE usage patterns that previously worked correctly now cause system-level hangs.

Root Cause

The root cause is a missing conditional check in the wait_sb_inodes() function that should skip inodes with AS_NO_DATA_INTEGRITY mappings. The function's documented behavior states it must wait for all pages under writeback for data integrity, but this should not apply to mappings that explicitly do not have data integrity semantics.

The fix involves adding a check to skip these mappings entirely, restoring FUSE to its prior behavior where sync operations are effectively no-ops for FUSE filesystems.

Attack Vector

The attack vector involves user-space control over FUSE server behavior. An attacker or faulty implementation can:

  1. Create a FUSE filesystem that accepts write requests
  2. Intentionally not reply to issued write requests from the kernel
  3. Trigger a filesystem sync operation (e.g., via sync() system call)
  4. The kernel enters wait_sb_inodes() and waits indefinitely for the FUSE writeback to complete
  5. System becomes unresponsive as the sync operation never completes

This vulnerability requires local access to mount a FUSE filesystem and can be triggered by any process capable of initiating sync operations on the affected filesystem.

Detection Methods for CVE-2026-23109

Indicators of Compromise

  • System hangs during filesystem sync operations
  • Processes stuck in uninterruptible sleep state (D state) related to writeback operations
  • FUSE mount points that are unresponsive
  • Kernel stack traces showing wait_sb_inodes() in a waiting state

Detection Strategies

  • Monitor for processes in uninterruptible sleep (D state) with stack traces involving wait_sb_inodes()
  • Track FUSE server response times and identify servers not responding to write requests
  • Implement watchdog timers on critical sync operations
  • Review kernel logs for writeback-related warnings or stalls

Monitoring Recommendations

  • Set up alerts for abnormally long filesystem sync operations
  • Monitor FUSE mount health and server responsiveness
  • Track kernel CPU time spent waiting in writeback functions
  • Implement system-level timeout monitoring for sync syscalls

How to Mitigate CVE-2026-23109

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Review and audit any custom FUSE server implementations for proper write request handling
  • Consider temporarily avoiding sync operations on FUSE filesystems until patched
  • Implement process-level timeouts for sync operations in critical applications

Patch Information

The vulnerability has been resolved in the Linux kernel stable tree. The fix modifies wait_sb_inodes() to skip inodes with AS_NO_DATA_INTEGRITY mappings, restoring FUSE to its prior behavior where syncs are no-ops.

Patches are available via the kernel Git repository:

  • Kernel Git Commit 3f4ed5e2b8f1
  • Kernel Git Commit f9a49aa302a0

Workarounds

  • Ensure FUSE servers properly respond to all write requests
  • Avoid mounting untrusted FUSE filesystems on production systems
  • Implement timeout mechanisms at the application level for sync operations
  • Consider using alternative filesystems that do not rely on FUSE for critical operations
bash
# Check kernel version and update
uname -r
# Update kernel via package manager (example for Debian/Ubuntu)
sudo apt update && sudo apt upgrade linux-image-$(uname -r)
# Verify FUSE mounts on the system
mount | grep fuse

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-31465: Linux Kernel Writeback DoS Vulnerability

  • CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

  • CVE-2026-31451: Linux Kernel ext4 DOS Vulnerability

  • CVE-2026-31448: Linux Kernel ext4 DoS 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