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

CVE-2025-71265: Linux Kernel NTFS3 DoS Vulnerability

CVE-2025-71265 is a denial-of-service flaw in the Linux kernel's NTFS3 file system caused by an infinite loop from inconsistent metadata. This article covers the technical details, affected versions, and mitigation steps.

Published: March 20, 2026

CVE-2025-71265 Overview

CVE-2025-71265 is a Denial of Service (DoS) vulnerability in the Linux kernel's NTFS3 file system driver. The vulnerability exists in the attr_load_runs_range() function, where inconsistent metadata in a malformed NTFS image can trigger an infinite loop, causing system resources to be exhausted and resulting in a denial of service condition.

The flaw occurs when an attribute header indicates an empty run list (with evcn=-1 and svcn=0) while directory entries reference it as containing actual data. This metadata inconsistency causes the run_lookup_entry() function to fail repeatedly, and because clen is set to 0, the loop increments vcn by zero (vcn += 0), creating an infinite loop that cannot exit.

Critical Impact

A maliciously crafted NTFS image can cause kernel-level infinite loops, leading to complete system unresponsiveness and denial of service conditions on Linux systems with NTFS3 file system support enabled.

Affected Products

  • Linux Kernel with NTFS3 file system driver enabled
  • Systems mounting untrusted NTFS volumes
  • Linux distributions with NTFS3 kernel module loaded

Discovery Timeline

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

Technical Details for CVE-2025-71265

Vulnerability Analysis

This infinite loop vulnerability resides in the NTFS3 file system implementation within the Linux kernel. The root cause involves a metadata consistency issue between attribute headers and run list data structures.

In NTFS file systems, setting evcn=-1 with svcn=0 is a legitimate representation of an empty run list. The run_unpack() function correctly handles this by checking if evcn + 1 equals svcn and returning early without parsing any run data. However, this creates a problematic edge case when metadata is inconsistent.

When the attribute header claims to be empty but the caller expects to read actual data, run_unpack() returns success immediately, leaving the runs_tree uninitialized with run->runs as NULL. The calling function attr_load_runs_range() interprets this successful return as confirmation that runs were loaded and sets clen to 0.

Root Cause

The vulnerability stems from insufficient validation of metadata consistency between attribute headers and their referenced run lists. Specifically:

  1. The run_unpack() function returns success when encountering an empty run list indicator (evcn=-1, svcn=0)
  2. This leaves the runs_tree data structure uninitialized with a NULL run->runs pointer
  3. The attr_load_runs_range() function assumes successful return means valid data was loaded
  4. When run_lookup_entry() fails on the uninitialized structure, clen is set to 0
  5. The subsequent vcn += clen operation increments by zero, causing an infinite loop

Attack Vector

An attacker can exploit this vulnerability by crafting a malicious NTFS image file with inconsistent metadata. The attack requires local access to mount the malformed file system or the ability to trick a user into mounting an untrusted NTFS volume. When a system attempts to read directory entries from the corrupted NTFS image, the infinite loop is triggered.

The attack could be delivered through:

  • Malicious USB drives containing crafted NTFS partitions
  • Downloaded NTFS disk images
  • Network-mounted NTFS volumes from untrusted sources
  • Virtual machine disk files with NTFS partitions

The exploitation mechanism involves the following flow: A crafted NTFS image contains an attribute header indicating an empty run list (evcn=-1, svcn=0) while directory entries reference it as containing actual data. When the kernel attempts to resolve this reference, the attr_load_runs_range() function enters an infinite loop due to the metadata inconsistency. For detailed technical information, see the kernel git commits in the external references.

Detection Methods for CVE-2025-71265

Indicators of Compromise

  • Unexplained system hangs or unresponsiveness when mounting NTFS volumes
  • High CPU utilization on a single core with kernel stack traces pointing to NTFS3 functions
  • System logs showing repeated NTFS3 driver activity without completion
  • Kernel panic or watchdog timeouts related to NTFS3 operations

Detection Strategies

  • Monitor for attr_load_runs_range and run_lookup_entry function calls in kernel debug logs
  • Implement file system integrity checking before mounting untrusted NTFS volumes
  • Use runtime kernel monitoring tools to detect infinite loops in file system drivers
  • Enable kernel function tracing (ftrace) for NTFS3 subsystem operations

Monitoring Recommendations

  • Configure system monitoring to alert on sustained 100% CPU usage by kernel threads
  • Implement watchdog timers to detect and recover from kernel hangs
  • Log all NTFS volume mount operations, especially from removable media
  • Monitor kernel log messages for NTFS3 driver warnings or errors

How to Mitigate CVE-2025-71265

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Restrict NTFS3 file system mounting to trusted volumes only
  • Disable automatic mounting of removable media with NTFS file systems
  • Consider temporarily blacklisting the ntfs3 kernel module if not required

Patch Information

The Linux kernel maintainers have released patches that add a retry counter to detect when run_lookup_entry() fails consecutively after attr_load_runs_vcn(). If the run is still not found on the second attempt, the function returns -EINVAL, indicating corrupted metadata and preventing the infinite loop condition.

The following kernel git commits contain the fix:

  • Commit 3c3a6e9
  • Commit 4b90f16
  • Commit 6f07a59
  • Commit 78b61f7
  • Commit a89bc96
  • Commit af83901
  • Commit c0b43c4

Workarounds

  • Blacklist the NTFS3 kernel module by adding blacklist ntfs3 to /etc/modprobe.d/blacklist.conf
  • Use the FUSE-based ntfs-3g driver as an alternative until the kernel is updated
  • Implement mount restrictions using /etc/fstab or mount policies to prevent untrusted NTFS volumes
  • Enable SELinux or AppArmor policies to restrict NTFS mounting capabilities
bash
# Configuration example
# Blacklist NTFS3 kernel module to prevent loading
echo "blacklist ntfs3" >> /etc/modprobe.d/blacklist-ntfs3.conf

# Unload the module if currently loaded
modprobe -r ntfs3

# Update initramfs to persist the change
update-initramfs -u

# Verify module is not loaded
lsmod | grep ntfs3

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.04%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit: 3c3a6e9

  • Kernel Git Commit: 4b90f16

  • Kernel Git Commit: 6f07a59

  • Kernel Git Commit: 78b61f7

  • Kernel Git Commit: a89bc96

  • Kernel Git Commit: af83901

  • Kernel Git Commit: c0b43c4
  • Related CVEs
  • CVE-2026-31465: Linux Kernel Writeback DoS Vulnerability

  • CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

  • CVE-2026-31451: Linux Kernel ext4 DOS Vulnerability

  • CVE-2026-31448: Linux Kernel ext4 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