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

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

CVE-2026-23141 is a use-after-free flaw in the Linux kernel's btrfs send function that can cause invalid memory access. This post explains the technical details, affected versions, impact, and mitigation steps.

Published: February 20, 2026

CVE-2026-23141 Overview

A memory access vulnerability has been identified in the Linux kernel's Btrfs (B-tree file system) send functionality. The issue exists in the range_is_hole_in_parent() function where the code fails to check whether a file extent item is an inline extent before accessing the disk_bytenr field. For inline extents, data starts at the offset of the disk_bytenr field, which means accessing this field without proper validation can result in reading inline data incorrectly or causing invalid memory access when the inline data is less than 8 bytes and the inline extent item is the first item in the leaf.

Critical Impact

This vulnerability can lead to invalid memory access in the Linux kernel's Btrfs file system, potentially causing system instability, kernel crashes, or disclosure of sensitive metadata from other items in the leaf structure.

Affected Products

  • Linux kernel with Btrfs file system support
  • Systems using Btrfs send/receive functionality
  • Linux distributions with affected kernel versions

Discovery Timeline

  • 2026-02-14 - CVE CVE-2026-23141 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-23141

Vulnerability Analysis

The vulnerability resides in the Btrfs send subsystem, specifically within the range_is_hole_in_parent() function. This function is responsible for determining whether a given range represents a hole (unallocated space) in the parent snapshot during incremental send operations.

The root issue is a missing type check for inline extents. In Btrfs, file extent items can be stored in two formats: regular extents (which have a disk_bytenr field pointing to the actual data location on disk) and inline extents (where the data is stored directly within the extent item itself, starting at the offset where disk_bytenr would normally be).

When the code attempts to access the disk_bytenr field without first verifying the extent type, it can inadvertently read inline data as if it were a disk byte number. This becomes particularly problematic in edge cases where:

  1. The inline data is less than 8 bytes (the size of the disk_bytenr field)
  2. The inline extent item is the first item in the B-tree leaf

In these scenarios, the memory access may read beyond the bounds of valid data, either accessing uninitialized memory or metadata belonging to other items in the leaf structure.

Root Cause

The vulnerability stems from improper input validation in the Btrfs send code path. The range_is_hole_in_parent() function accesses the disk_bytenr field of file extent items without first checking the extent type via the btrfs_file_extent_type() function. This omission violates the Btrfs data structure invariants where inline extents do not have a valid disk_bytenr field—instead, that memory location contains the actual file data.

Attack Vector

The vulnerability requires local access to the system with the ability to trigger Btrfs send operations on crafted file system images or snapshots. An attacker with sufficient privileges could potentially:

  1. Create a Btrfs subvolume containing specifically crafted inline extents
  2. Trigger an incremental send operation that processes the malicious extent items
  3. Exploit the invalid memory access to potentially leak kernel memory or cause a denial of service through a kernel crash

While exploitation requires local access and specific Btrfs operations, the vulnerability affects a fundamental kernel subsystem and could be leveraged by a malicious local user or through processing untrusted Btrfs file system images.

Detection Methods for CVE-2026-23141

Indicators of Compromise

  • Kernel oops or panic messages referencing Btrfs send operations
  • Unexpected crashes during btrfs send or btrfs receive commands
  • Kernel log entries showing memory access violations in Btrfs code paths
  • System instability when processing Btrfs snapshots with inline extents

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for Btrfs-related error messages and stack traces
  • Implement system monitoring for unexpected kernel crashes during file system operations
  • Use kernel live patching detection tools to verify patch status on production systems
  • Deploy endpoint detection solutions capable of identifying kernel-level memory access anomalies

Monitoring Recommendations

  • Enable Btrfs debugging output to capture detailed operation logs during send/receive operations
  • Configure crash dump collection (kdump) to capture kernel state for post-incident analysis
  • Monitor for unusual btrfs send invocations, especially from non-administrative users
  • Implement file integrity monitoring on systems with sensitive Btrfs volumes

How to Mitigate CVE-2026-23141

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the inline extent check fix
  • Restrict access to Btrfs send/receive operations to trusted administrators only
  • Avoid processing untrusted Btrfs file system images or snapshots until patched
  • Consider temporarily disabling Btrfs send functionality on critical systems if immediate patching is not possible

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix adds proper validation to check for inline extents before accessing the disk_bytenr field in the range_is_hole_in_parent() function.

Multiple patch commits are available across different kernel branches:

  • Kernel Git Commit 08b096c
  • Kernel Git Commit 39f83f1
  • Kernel Git Commit db00636
  • Kernel Git Commit f2dc6ab

System administrators should apply the appropriate patch for their kernel version and rebuild/reinstall the kernel, or upgrade to a distribution kernel package that includes the fix.

Workarounds

  • Restrict Btrfs send/receive operations to trusted users with validated input
  • Use alternative file system snapshot mechanisms (e.g., LVM snapshots) until patching is complete
  • Implement access controls to prevent untrusted users from triggering send operations on Btrfs volumes
  • Isolate systems performing Btrfs send/receive operations from untrusted network segments
bash
# Verify current kernel version and check for available updates
uname -r

# Check for available kernel updates (Debian/Ubuntu)
apt list --upgradable | grep linux-image

# Check for available kernel updates (RHEL/CentOS)
yum check-update kernel

# Restrict btrfs command access to root only (temporary workaround)
chmod 700 /usr/sbin/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 08b096c

  • Kernel Git Commit 39f83f1

  • Kernel Git Commit db00636

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