CVE-2025-71265
Infinite Loop DoS in Linux Kernel ntfs3 Filesystem Metadata Handling
Publication date: 2026-03-18
Last updated on: 2026-03-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux_kernel | ntfs3 | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is an infinite loop bug in the Linux kernel's ntfs3 file system. It occurs when there is inconsistent metadata in a malformed NTFS image. Specifically, an attribute header indicates an empty run list, but directory entries reference it as containing actual data. This inconsistency causes the function attr_load_runs_range() to enter an infinite loop because it expects data that is not properly initialized, leading to a Denial-of-Service (DoS) condition.
The root cause is that the run_unpack() function returns success when it encounters an empty run list, leaving the runs_tree uninitialized. The calling function then assumes the runs were loaded and tries to process them, but since the runs_tree is uninitialized, the loop never progresses and runs indefinitely.
The fix involves adding a retry counter to detect when the run_lookup_entry() function fails consecutively. If the run is still not found after a second attempt, the code returns an error indicating corrupted metadata, thus preventing the infinite loop and the resulting Denial-of-Service.
How can this vulnerability impact me? :
This vulnerability can lead to a Denial-of-Service (DoS) condition on systems using the Linux kernel's ntfs3 file system. An attacker could exploit malformed NTFS images with inconsistent metadata to trigger an infinite loop in the kernel, causing the system or affected processes to hang or become unresponsive.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
I don't know
What immediate steps should I take to mitigate this vulnerability?
I don't know