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

CVE-2026-23423: Linux Kernel Use-After-Free Vulnerability

CVE-2026-23423 is a use-after-free flaw in the Linux kernel's btrfs filesystem that can cause memory leaks on error paths. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-23423 Overview

A memory leak vulnerability has been identified in the Linux kernel's btrfs filesystem implementation, specifically within the btrfs_uring_read_extent() function. The vulnerability occurs when the pages object is not properly freed during error conditions, leading to potential memory exhaustion over time.

In the affected function, the pages object allocation is never freed on error paths, with the expectation that it would be cleaned up by btrfs_uring_read_finished() during deferred execution. However, this assumption only holds for the successful execution path. When previous allocations fail or when btrfs_encoded_read_regular_fill_pages() does not return -EIOCBQUEUED, the code transitions to a cleanup section that fails to free the pages allocation, resulting in a memory leak.

Critical Impact

Persistent memory leaks in kernel space can lead to system instability, denial of service conditions, and potential exploitation for resource exhaustion attacks on Linux systems using btrfs filesystem.

Affected Products

  • Linux Kernel (btrfs filesystem component)
  • Systems utilizing io_uring with btrfs encoded read operations

Discovery Timeline

  • April 3, 2026 - CVE-2026-23423 published to NVD
  • April 3, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23423

Vulnerability Analysis

This vulnerability is classified as a Memory Leak within the Linux kernel's btrfs filesystem subsystem. The issue stems from improper resource cleanup in the btrfs_uring_read_extent() function when handling error conditions during io_uring read operations.

The function allocates memory for a pages object that is intended to be freed by btrfs_uring_read_finished() upon successful completion of deferred I/O operations. However, the error handling logic fails to account for scenarios where deferred execution never occurs, leaving allocated memory unreferenced and unrecoverable.

Root Cause

The root cause is an incomplete error handling path in btrfs_uring_read_extent(). When the function encounters an error condition—either from failed prior allocations or when btrfs_encoded_read_regular_fill_pages() returns a value other than -EIOCBQUEUED—it jumps to a cleanup section. This cleanup section is designed to free all resources allocated by the function, but it incorrectly omits the pages allocation from its cleanup routine, assuming the deferred execution path will handle it.

Attack Vector

While the attack vector for this vulnerability is currently unknown, the memory leak could potentially be exploited by:

  • Repeatedly triggering the error condition in btrfs_uring_read_extent() to cause progressive memory exhaustion
  • Crafting specific io_uring operations against btrfs filesystems that reliably hit the vulnerable error paths
  • Using this memory leak as part of a larger attack chain targeting system stability

The vulnerability requires local access to a system with btrfs filesystem mounted and the ability to perform io_uring operations against it.

Detection Methods for CVE-2026-23423

Indicators of Compromise

  • Gradual increase in kernel memory usage over time on systems using btrfs with io_uring operations
  • System logs indicating memory pressure or out-of-memory conditions without corresponding user-space memory growth
  • Unexplained kernel memory fragmentation on btrfs-enabled systems

Detection Strategies

  • Monitor /proc/meminfo for abnormal growth in Slab or KernelStack memory allocations
  • Use slabtop or /proc/slabinfo to track btrfs-related slab allocations over time
  • Implement kernel memory leak detection tools such as kmemleak to identify unreferenced memory blocks
  • Deploy SentinelOne's kernel-level monitoring capabilities to detect anomalous memory patterns

Monitoring Recommendations

  • Establish baseline memory usage patterns for systems utilizing btrfs filesystems
  • Configure alerting thresholds for kernel memory growth that exceeds normal operational parameters
  • Review system logs for btrfs-related errors that may indicate exploitation attempts
  • Monitor io_uring operation patterns for unusual activity targeting btrfs volumes

How to Mitigate CVE-2026-23423

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for CVE-2026-23423
  • Consider temporarily disabling io_uring operations on btrfs filesystems if updates cannot be immediately applied
  • Monitor affected systems for signs of memory exhaustion until patches are deployed
  • Review and prioritize kernel updates for systems with critical btrfs workloads

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix ensures that the pages allocation is properly freed in all error paths within btrfs_uring_read_extent(), not just during successful deferred execution cleanup.

Patches are available through the following kernel git commits:

  • Kernel Git Commit 3f50141
  • Kernel Git Commit 62889589
  • Kernel Git Commit d4f210de

Workarounds

  • Limit io_uring usage on systems with btrfs filesystems until patches can be applied
  • Implement memory monitoring and automated system restarts if kernel memory exceeds safe thresholds
  • Consider using alternative filesystems for workloads that heavily rely on io_uring operations
  • Deploy kernel live patching solutions if available for your distribution to apply fixes without system restarts
bash
# Monitor kernel memory usage for btrfs-related allocations
watch -n 5 'grep -i btrfs /proc/slabinfo'

# Check for memory leak indicators
cat /sys/kernel/debug/kmemleak 2>/dev/null | grep -i btrfs

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

  • EPSS Probability0.02%

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

  • Kernel Git Commit 62889589

  • Kernel Git Commit d4f210de
  • 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