The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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
    • 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-23223

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

CVE-2026-23223 is a use-after-free flaw in the Linux kernel's XFS filesystem that occurs in xchk_btree_check_block_owner. This post explains the technical details, affected versions, impact, and mitigation steps.

Published: February 20, 2026

CVE-2026-23223 Overview

A Use-After-Free (UAF) vulnerability has been identified in the Linux kernel's XFS filesystem subsystem, specifically in the xchk_btree_check_block_owner function. The vulnerability occurs when attempting to dereference bs->cur after determining if it aliases bs->sc->sa.{bno,rmap}_cur following the freeing of the latter. This memory safety issue was introduced when the xfs_btnum_t type was removed, breaking the correct temporal ordering of operations.

Critical Impact

This Use-After-Free vulnerability in the Linux kernel's XFS filesystem could potentially allow local attackers to cause system instability, denial of service, or potentially escalate privileges through memory corruption.

Affected Products

  • Linux Kernel with XFS filesystem support

Discovery Timeline

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

Technical Details for CVE-2026-23223

Vulnerability Analysis

The vulnerability exists within the XFS filesystem's scrub infrastructure, specifically in the B-tree block owner checking functionality. The xchk_btree_check_block_owner function performs validation of B-tree block ownership during filesystem integrity checks.

The core issue is a temporal ordering problem where the code attempts to dereference bs->cur to determine whether it aliases with bs->sc->sa.bno_cur or bs->sc->sa.rmap_cur after these latter cursors have already been freed. This creates a classic Use-After-Free condition where the code accesses memory that has been deallocated.

The regression was introduced when the xfs_btnum_t enumeration type was removed from the codebase. Prior to this removal, the btree number type was sampled before any cursor freeing could occur, ensuring proper temporal ordering. Without this safeguard, the code path now allows for the dangerous dereference of freed memory.

Root Cause

The root cause of this vulnerability is improper memory access ordering in the XFS scrub code. When xfs_btnum_t was removed from the kernel, the mechanism that ensured the B-tree type was captured before cursor deallocation was inadvertently broken. The fix requires sampling the cursor type before any freeing operations can take place, restoring the correct temporal sequence of memory operations.

Attack Vector

The attack vector for this vulnerability is local. An attacker would need local access to a system running an affected Linux kernel with XFS filesystem mounted. Exploitation could potentially be triggered through:

  • Initiating XFS filesystem scrub operations (xfs_scrub)
  • Manipulating B-tree structures during filesystem integrity checks
  • Triggering the vulnerable code path through filesystem operations that invoke the block owner checking logic

The vulnerability is in kernel space, meaning successful exploitation could result in kernel memory corruption, potentially leading to denial of service (kernel panic) or privilege escalation scenarios.

Detection Methods for CVE-2026-23223

Indicators of Compromise

  • Kernel crash logs (oops/panic) referencing xchk_btree_check_block_owner or related XFS scrub functions
  • Unexpected system instability when running XFS filesystem scrub operations
  • Memory corruption warnings in kernel logs related to XFS subsystem

Detection Strategies

  • Monitor kernel logs for UAF-related warnings or crashes in XFS scrub code paths
  • Deploy kernel live patching solutions to detect vulnerable kernel versions
  • Implement system monitoring for unexpected kernel panics during XFS operations

Monitoring Recommendations

  • Enable kernel memory debugging options (KASAN) to detect UAF conditions in development/testing environments
  • Monitor for anomalous XFS scrub operation failures or extended execution times
  • Configure alerting on kernel crash dumps containing XFS-related stack traces

How to Mitigate CVE-2026-23223

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix
  • Temporarily avoid running xfs_scrub operations on affected systems until patched
  • Consider disabling non-essential XFS filesystem integrity checking until the patch is applied

Patch Information

The vulnerability has been addressed in the Linux kernel through commits that restore proper temporal ordering by sampling the cursor type before any freeing operations occur. The following patches are available:

  • Linux Kernel Patch - commit 1d41127
  • Linux Kernel Commit - commit ba52646
  • Linux Kernel Update - commit ed82e79

System administrators should apply the relevant patch for their kernel version from the stable kernel tree or update to a kernel release that includes these fixes.

Workarounds

  • Avoid running XFS filesystem scrub (xfs_scrub) operations until the kernel is patched
  • If XFS scrub is required, ensure proper backups are in place and run during maintenance windows
  • Consider using alternative filesystem integrity checking methods temporarily
  • Monitor system stability closely if XFS scrub operations cannot be avoided

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
  • Linux Kernel Patch

  • Linux Kernel Commit

  • Linux Kernel Update
  • Related CVEs
  • CVE-2026-23408: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-23412: Linux Kernel Use-After-Free Vulnerability
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