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
    • 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-71266

CVE-2025-71266: Linux Kernel NTFS3 DoS Vulnerability

CVE-2025-71266 is a denial-of-service flaw in Linux kernel NTFS3 that causes infinite loops and memory exhaustion through malformed directory entries. This post explains its impact, affected versions, and mitigation steps.

Published: March 20, 2026

CVE-2025-71266 Overview

CVE-2025-71266 is a Denial of Service (DoS) vulnerability discovered in the Linux kernel's NTFS3 filesystem driver. The vulnerability exists within the indx_find() function, which can enter an infinite loop when processing malformed directory entries. This flaw allows an attacker with access to a crafted NTFS filesystem to cause system resource exhaustion, leading to an Out-of-Memory (OOM) crash.

The vulnerability stems from insufficient validation of INDEX_ENTRY structures within NTFS directory INDEX_ALLOCATION blocks. By manipulating the HAS_SUB_NODE flag and VCN (Virtual Cluster Number) pointer within a malformed dentry, an attacker can force the kernel to repeatedly read the same block while allocating 4 KB of memory on each iteration.

Critical Impact

A malicious NTFS filesystem can cause kernel memory exhaustion and system denial of service through an infinite loop in the indx_find() function.

Affected Products

  • Linux kernel with NTFS3 filesystem driver enabled
  • Systems mounting untrusted NTFS volumes
  • Linux distributions using vulnerable kernel versions

Discovery Timeline

  • 2026-03-18 - CVE CVE-2025-71266 published to NVD
  • 2026-03-18 - Last updated in NVD database

Technical Details for CVE-2025-71266

Vulnerability Analysis

The vulnerability resides in the NTFS3 filesystem driver's index lookup mechanism. When the kernel performs directory lookups on an NTFS volume, it uses the indx_find() function to traverse INDEX_ENTRY structures stored in INDEX_ALLOCATION blocks.

The root problem is that the NTFS3 driver lacks proper VCN loop detection and depth limits when traversing these index structures. An attacker can craft a malicious NTFS filesystem where an INDEX_ENTRY has the HAS_SUB_NODE flag set with a VCN pointer that points back to the same block or creates a circular reference. This causes the indx_find() function to enter an infinite loop, continuously allocating 4 KB of memory with each iteration.

As the loop continues indefinitely, system memory becomes exhausted, eventually triggering the kernel's OOM (Out-of-Memory) killer. This results in a complete denial of service condition that may require a system reboot to recover.

Root Cause

The root cause is the absence of return value checking for the fnd_push() function within indx_find(). The fnd_push() function is designed to track visited nodes during index traversal. When the index depth exceeds the size of the fnd->nodes array, fnd_push() returns -EINVAL to signal an error condition.

However, prior to the patch, the indx_find() function did not check this return value, allowing the traversal to continue even when the maximum depth was exceeded or when circular references were encountered. This oversight enabled the infinite loop condition and subsequent memory exhaustion.

Attack Vector

The attack requires local access or the ability to present a maliciously crafted NTFS filesystem to a vulnerable system. Attack scenarios include:

  1. Physical Access: An attacker with physical access can insert a USB drive containing a malicious NTFS filesystem. When the system attempts to mount or enumerate the volume, the vulnerability is triggered.

  2. Remote Exploitation via File Sharing: If the vulnerable system mounts NTFS volumes over a network (such as through CIFS/SMB shares on Windows systems), an attacker controlling the remote storage could present a malicious filesystem structure.

  3. Container Escape Scenarios: In containerized environments where NTFS volumes are mounted from untrusted sources, this vulnerability could be used to crash the host kernel.

The attack leverages the following mechanism: A crafted NTFS filesystem contains a directory with an INDEX_ALLOCATION block where an INDEX_ENTRY has the HAS_SUB_NODE flag enabled. The VCN pointer in this entry is manipulated to reference the same block or create a circular reference chain. When the kernel performs any operation requiring directory lookup (such as listing files or path resolution), the indx_find() function enters an infinite loop, allocating memory until the system crashes.

Detection Methods for CVE-2025-71266

Indicators of Compromise

  • Sudden kernel memory consumption increases when accessing NTFS volumes
  • System hangs or unresponsiveness during NTFS directory operations
  • OOM killer activation logs in /var/log/kern.log or dmesg output associated with NTFS3 operations
  • Process context showing indx_find or ntfs3-related functions in stack traces

Detection Strategies

  • Monitor for abnormal memory allocation patterns in kernel space, particularly associated with filesystem operations
  • Implement syscall monitoring for mount operations involving NTFS filesystems from untrusted sources
  • Deploy kernel live patching solutions to detect and alert on unpatched systems
  • Use kernel auditing tools to track NTFS mount operations and flag volumes from removable or untrusted storage

Monitoring Recommendations

  • Enable kernel memory allocation monitoring and set thresholds for alerting on rapid memory consumption
  • Configure auditd rules to log all filesystem mount operations: auditctl -w /bin/mount -p x -k mount_ops
  • Monitor system logs for OOM killer events and correlate with recent NTFS mount activities
  • Implement endpoint detection rules that flag NTFS3-related kernel operations consuming excessive resources

How to Mitigate CVE-2025-71266

Immediate Actions Required

  • Apply the kernel patches referenced in the security advisories immediately
  • Disable automatic mounting of NTFS filesystems from untrusted sources until patched
  • Review and restrict which users and processes can mount NTFS volumes
  • Consider disabling the NTFS3 kernel module on systems that do not require NTFS support: modprobe -r ntfs3

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix adds proper return value checking for the fnd_push() function within indx_find(). When the index depth exceeds the size of the fnd->nodes array, fnd_push() returns -EINVAL, and the patched indx_find() function now properly checks this return value and stops processing, preventing further memory allocation.

Multiple kernel branches have been patched. The fix has been committed across several kernel versions as evidenced by the multiple commit references. System administrators should update to the latest stable kernel release for their distribution. Relevant patches can be found at:

  • Linux Kernel Commit 0ad7a1be44
  • Linux Kernel Commit 14c3188afb
  • Linux Kernel Commit 1732053c8a
  • Linux Kernel Commit 398e768d1a
  • Linux Kernel Commit 435d34719d
  • Linux Kernel Commit 68e32694be
  • Linux Kernel Commit b0ea441f44

Workarounds

  • Blacklist the ntfs3 kernel module to prevent automatic loading: add blacklist ntfs3 to /etc/modprobe.d/blacklist.conf
  • Use the user-space ntfs-3g driver as an alternative for mounting NTFS volumes until the kernel is patched
  • Restrict NTFS mount capabilities to trusted administrators only using mount policies or SELinux/AppArmor rules
  • Block removable media automount for untrusted users through udev rules or desktop environment settings
bash
# Disable NTFS3 kernel module
echo "blacklist ntfs3" >> /etc/modprobe.d/blacklist-ntfs3.conf
echo "install ntfs3 /bin/false" >> /etc/modprobe.d/blacklist-ntfs3.conf

# Unload the module if currently loaded
modprobe -r ntfs3

# Update initramfs to persist changes
update-initramfs -u

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

  • CVE-2026-23451: Linux Kernel Bonding Driver DoS Flaw

  • CVE-2026-23460: Linux Kernel ROSE Protocol DoS Vulnerability

  • CVE-2026-23459: Linux Kernel DOS 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