CVE-2026-72470
Received Received - Intake

Buffer Overflow in Linux Kernel NTFS3 Filesystem

Vulnerability report for CVE-2026-72470, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-08-15

Last updated on: 2026-08-15

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: fs/ntfs3: resize log->one_page_buf when adopting on-disk page size log_replay() allocates log->one_page_buf using the page size that was chosen from the host PAGE_SIZE: log->one_page_buf = kmalloc(log->page_size, GFP_NOFS); Later, when a restart area is found, the log page size recorded on disk is adopted: t32 = le32_to_cpu(log->rst_info.r_page->sys_page_size); if (log->page_size != t32) { log->l_size = log->orig_file_size; log->page_size = norm_file_page(t32, &log->l_size, t32 == DefaultLogPageSize); } If the on-disk page size is larger than the size used for the initial allocation, log->page_size grows but one_page_buf is left at its original, smaller size. A subsequent unaligned read_log_page() then reads log->page_size bytes into the undersized scratch buffer: page_buf = page_off ? log->one_page_buf : *buffer; err = ntfs_read_run_nb_ra(ni->mi.sbi, &ni->file.run, page_vbo, page_buf, log->page_size, NULL, &log->read_ahead); overflowing the allocation. This is reachable when mounting a dirty NTFS volume whose log was formatted with a page size larger than the buffer initially allocated on the mounting host (for example a 64K-log volume mounted on a host that allocated a 4K scratch buffer). Grow one_page_buf when the adopted on-disk page size exceeds the size used for the initial allocation. On krealloc() failure the original buffer is left intact and freed by the existing error path.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-15
Last Modified
2026-08-15
Generated
2026-08-15
AI Q&A
2026-08-15
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel involves improper handling of NTFS log page sizes during volume mounting. When a dirty NTFS volume with a larger on-disk log page size is mounted on a host using a smaller page size, the kernel fails to resize the allocated buffer accordingly. This leads to a buffer overflow when reading log data into an undersized scratch buffer.

Detection Guidance

This vulnerability is specific to the Linux kernel's NTFS3 filesystem and is triggered when mounting a dirty NTFS volume with a log page size larger than the host's PAGE_SIZE. Detection requires checking kernel logs for NTFS3 mount errors or crashes during NTFS volume mounting. No direct network detection commands are applicable.

Impact Analysis

This flaw could allow an attacker to cause a kernel buffer overflow by mounting a specially crafted NTFS volume. This may lead to system crashes, data corruption, or potential privilege escalation if exploited. Users running affected Linux kernel versions with NTFS support should update their systems.

Mitigation Strategies

Apply the Linux kernel patch that fixes this issue. Avoid mounting dirty NTFS volumes until the patch is applied. If mounting is necessary, ensure the NTFS volume is clean to prevent log replay issues.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-72470. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart