A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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 vulnerability in the Linux Kernel's btrfs filesystem that causes memory leaks during error handling. This article covers the technical details, affected versions, and mitigation.

Updated: May 16, 2026

CVE-2026-23423 Overview

CVE-2026-23423 is a memory leak vulnerability [CWE-401] in the Linux kernel's Btrfs filesystem. The flaw resides in the btrfs_uring_read_extent() function, where the pages object is not freed along error paths. The function relies on btrfs_uring_read_finished() picking up the allocation in deferred execution, but this only occurs in the success path. When allocations fail earlier or when btrfs_encoded_read_regular_fill_pages() returns a value other than -EIOCBQUEUED, the cleanup section frees other memory but leaks the pages allocation.

Critical Impact

A local authenticated user can trigger repeated memory leaks through io_uring read operations on Btrfs, exhausting kernel memory and causing denial of service.

Affected Products

  • Linux kernel 6.13 (release)
  • Linux kernel 7.0-rc1 through 7.0-rc7
  • Btrfs filesystem with io_uring encoded read support enabled

Discovery Timeline

  • 2026-04-03 - CVE-2026-23423 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-23423

Vulnerability Analysis

The vulnerability is classified as a missing release of memory after effective lifetime [CWE-401]. The btrfs_uring_read_extent() function implements io_uring-based encoded reads on Btrfs. It allocates a pages array intended to be released asynchronously by btrfs_uring_read_finished() once the read completes.

The deferred-free pattern only holds when the function successfully queues the asynchronous operation and returns -EIOCBQUEUED. If an earlier allocation fails, or if btrfs_encoded_read_regular_fill_pages() returns an error or a synchronous completion, control transfers to a cleanup label. That cleanup path releases all other resources allocated within the function but omits the pages buffer, producing a kernel memory leak on every failed invocation.

Root Cause

The root cause is inconsistent ownership transfer of the pages allocation. The code assumes successful queuing of the asynchronous read, so the cleanup path was written under the false premise that deferred completion would always reclaim the buffer. Error paths therefore drop the only reference to pages without invoking the corresponding free routine.

Attack Vector

Exploitation requires local access with privileges sufficient to issue io_uring operations against a Btrfs filesystem. An attacker repeatedly invokes encoded read operations under conditions that force the function into its error paths, such as resource pressure or crafted argument values that cause earlier allocations to fail. Each failed call leaks the pages allocation, gradually exhausting kernel memory and resulting in availability impact. The vulnerability does not expose confidentiality or integrity but degrades system stability.

No public proof-of-concept exploit is available, and the issue is not listed in the CISA Known Exploited Vulnerabilities catalog.

Detection Methods for CVE-2026-23423

Indicators of Compromise

  • Steady growth of kernel slab memory associated with page allocations on hosts using Btrfs with io_uring workloads
  • Repeated EIO, ENOMEM, or non-EIOCBQUEUED return codes from io_uring encoded read submissions
  • Out-of-memory events or OOM-killer activity on systems with otherwise predictable memory footprints

Detection Strategies

  • Audit installed kernel versions for Linux 6.13 and 7.0-rc1 through 7.0-rc7 across managed Linux hosts
  • Monitor /proc/meminfo and /proc/slabinfo for unexplained increases in kernel page allocations on Btrfs-backed systems
  • Correlate io_uring submission queue activity with Btrfs filesystem operations to identify abnormal patterns of failed encoded reads

Monitoring Recommendations

  • Enable kernel memory leak detection (kmemleak) on test systems running affected kernels to confirm exposure
  • Track per-process io_uring usage and flag non-root processes generating high volumes of Btrfs encoded read submissions
  • Centralize kernel logs and watch for btrfs warnings or repeated allocation failures originating from the io_uring subsystem

How to Mitigate CVE-2026-23423

Immediate Actions Required

  • Inventory Linux hosts running kernel 6.13 or any 7.0-rc release and prioritize them for patching
  • Apply the upstream Btrfs fix referenced in the kernel stable tree commits as soon as vendor builds are available
  • Restrict io_uring access for untrusted local users on multi-tenant systems by configuring kernel.io_uring_disabled where supported

Patch Information

The fix adds the missing free for the pages allocation in the error cleanup path of btrfs_uring_read_extent(). Patches are merged in the upstream Linux stable tree under commits 3f501412f2079ca14bf68a18d80a2b7a823f1f64, 628895890b0c9ac9129129e89455da7db95ba343, and d4f210de01eaccac61eee657f676045ef9771d07. Distribution-specific kernel updates should be applied once published.

Workarounds

  • Disable io_uring system-wide using sysctl -w kernel.io_uring_disabled=2 on kernels that support the toggle
  • Avoid using Btrfs encoded read interfaces from untrusted user contexts until patched kernels are deployed
  • Limit local shell access on systems exposing Btrfs filesystems via io_uring to reduce exposure to local denial-of-service attempts
bash
# Configuration example: disable io_uring for non-privileged users
sysctl -w kernel.io_uring_disabled=2
echo 'kernel.io_uring_disabled=2' | sudo tee /etc/sysctl.d/99-disable-io_uring.conf
sudo sysctl --system

# Verify current kernel version against affected releases
uname -r

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-401
  • Vendor Resources
  • Kernel Git Commit 3f50141

  • Kernel Git Commit 62889589

  • Kernel Git Commit d4f210de
  • Related CVEs
  • CVE-2026-46241: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-46222: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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