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-2025-71184

CVE-2025-71184: Linux Kernel Btrfs NULL Dereference Flaw

CVE-2025-71184 is a NULL pointer dereference vulnerability in the Linux kernel's btrfs filesystem that occurs during inode eviction. This article covers the technical details, affected versions, impact, and mitigation steps.

Published: February 6, 2026

CVE-2025-71184 Overview

A NULL pointer dereference vulnerability has been identified in the Linux kernel's Btrfs filesystem subsystem. The flaw exists in the btrfs_evict_inode() function, where tracing setup attempts to access the root's ID before validating that the root pointer is not NULL. This can lead to a kernel crash when evicting an inode under specific conditions where the root has not been properly initialized.

Critical Impact

This vulnerability can cause kernel crashes and system instability when the Btrfs filesystem attempts to evict inodes with NULL root pointers, potentially leading to denial of service conditions.

Affected Products

  • Linux Kernel (Btrfs filesystem subsystem)
  • Systems utilizing Btrfs as their primary or secondary filesystem
  • Linux distributions with vulnerable kernel versions

Discovery Timeline

  • 2026-01-31 - CVE CVE-2025-71184 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2025-71184

Vulnerability Analysis

The vulnerability occurs within the Btrfs filesystem's inode eviction handling mechanism. When the kernel evicts an inode, the btrfs_evict_inode() function is called. The first operation in this function is to set up tracing, which requires fetching the root's ID via ->root_objectid. However, the root pointer can legitimately be NULL under certain conditions, as evidenced by the NULL check that follows this tracing setup code.

By accessing the root pointer to fetch the root_objectid before verifying its validity, the code creates a condition where a NULL pointer dereference can occur. This results in a kernel panic, causing the system to crash and become unavailable.

Root Cause

The root cause of this vulnerability is improper validation order in the btrfs_evict_inode() function. The tracing setup code attempts to access the root_objectid field without first checking if the root pointer is NULL. The fix addresses this by setting the root_objectid to 0 when the root is NULL, which maintains the ability to trace such calls while preventing the NULL dereference.

Attack Vector

The attack vector for this vulnerability is local. An attacker with local access to a system using the Btrfs filesystem could potentially trigger this condition through specific filesystem operations that cause inode eviction when the root pointer is in an uninitialized state. While exploitation requires local access, successful exploitation results in a kernel panic and denial of service.

The vulnerability manifests in the inode eviction path of the Btrfs filesystem. When tracing is enabled, the kernel attempts to access the root structure to retrieve the root_objectid. If the root pointer is NULL at this point, the dereference causes a kernel crash. See the kernel git commits for the technical fix implementation.

Detection Methods for CVE-2025-71184

Indicators of Compromise

  • Unexpected kernel panics or system crashes on systems using Btrfs filesystem
  • Kernel oops messages referencing btrfs_evict_inode in crash dumps or system logs
  • System instability during heavy filesystem operations on Btrfs volumes

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference errors in the Btrfs subsystem
  • Implement kernel crash dump analysis to identify crashes originating from btrfs_evict_inode()
  • Deploy file integrity monitoring to detect unauthorized filesystem manipulation attempts

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture diagnostic information during kernel panics
  • Configure syslog forwarding to centralized logging infrastructure to capture Btrfs-related error messages
  • Implement automated alerting on system reboots or unexpected kernel crashes

How to Mitigate CVE-2025-71184

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for this vulnerability
  • Review systems using Btrfs filesystems and prioritize patching based on criticality
  • Consider temporarily switching to alternative filesystems on critical systems if immediate patching is not possible

Patch Information

The vulnerability has been addressed in the Linux kernel through multiple commits. The fix modifies the tracing setup code to check if the root pointer is NULL before accessing root_objectid, and sets the value to 0 if the root is NULL to maintain traceability while preventing the crash.

Patches are available through the official kernel git repository:

  • Commit 582ba48e4a4c06fef6bdcf4e57b7b9af660bbd0c
  • Commit 99e057f3d3ef24b99a7b1d84e01dd1bd890098da
  • Commit f157dd661339fc6f5f2b574fe2429c43bd309534

Workarounds

  • If patching is not immediately possible, consider disabling Btrfs tracing to reduce exposure
  • Restrict local access to systems using Btrfs to trusted users only
  • Monitor Btrfs filesystem health and schedule patching during maintenance windows
bash
# Check current kernel version
uname -r

# Update kernel using package manager (example for Debian/Ubuntu)
sudo apt update && sudo apt upgrade linux-image-$(uname -r)

# Verify Btrfs module status
lsmod | grep btrfs

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Details

  • Kernel Git Commit Details
  • Related CVEs
  • CVE-2026-31439: Linux Kernel XDMA Error Handling Flaw

  • CVE-2026-31441: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31434: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31435: Linux Kernel Read Abandonment 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