CVE-2026-72191
Last modified
CVE-2026-72191 is a critical-severity vulnerability rated 9.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: ntfs3: validate split-point offset in indx_insert_into_buffer indx_insert_into_buffer() computes used = used1 - to_copy - sp_size; memmove(de_t, Add2Ptr(sp, sp_size), used - le32_to_cpu(hdr1->de_off)); where sp and sp_size come from hdr_find_split(). hdr_find_split() walks entries by le16_to_cpu(e->size) without validating that each step stays within hdr->used or that the size field is at least sizeof(struct NTFS_DE). EPSS estimates a 0.20% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: ntfs3: validate split-point offset in indx_insert_into_buffer indx_insert_into_buffer() computes used = used1 - to_copy - sp_size; memmove(de_t, Add2Ptr(sp, sp_size), used - le32_to_cpu(hdr1->de_off)); where sp and sp_size come from hdr_find_split(). hdr_find_split() walks entries by le16_to_cpu(e->size) without validating that each step stays within hdr->used or that the size field is at least sizeof(struct NTFS_DE). index_hdr_check(), the on-load gatekeeper, only validates header-level fields (used, total, de_off) and does not walk per-entry sizes. A crafted NTFS image whose leaf INDEX_HDR reports used == total but contains one interior NTFS_DE with size = 0xFFF0 therefore passes validation, descends to indx_insert_into_buffer() through the ntfs_create() -> indx_insert_entry() path, and makes hdr_find_split() return an sp whose sp_size (0xFFF0) greatly exceeds the remaining bytes in the buffer. The u32 subtraction underflows and the memmove count becomes a near-4-GiB value, producing an out-of-bounds kernel write that corrupts adjacent allocations and panics the kernel. Reproduced on 7.0.0-rc7 with UML + KASAN via a crafted image and a single 'touch' inside the mounted directory; crash site resolves to fs/ntfs3/index.c at the memmove. Trigger requires only local mount of an attacker-supplied filesystem image (USB, loopback, or removable media auto-mount). Reject the split whenever the chosen sp plus its declared size already extends past hdr1->used. This is the minimal fix; it preserves the existing hdr_find_split() contract and relies on the same out: cleanup path as the pre-existing error returns. A prior OOB read in the very same indx_insert_into_buffer() memmove was fixed in commit b8c44949044e ("fs/ntfs3: Fix OOB read in indx_insert_into_buffer") by tightening hdr_find_e(), but that fix does not cover the split-point size field path addressed here: sp is returned by hdr_find_split(), not hdr_find_e(), and the underflow is driven by sp->size rather than hdr->used exceeding hdr->total.
Metrics
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 82cae269cfa953032fbb8980a7d554d60fb00b17, < b232eb5c9fe11ec2368e9b565db69c724c35fbd2; >= 82cae269cfa953032fbb8980a7d554d60fb00b17, < 7bf74e6baf810fe325f111996496c678fc6e244f; >= 82cae269cfa953032fbb8980a7d554d60fb00b17, < f3624cc069195001c88df7a291af215f2133ff2c; >= 82cae269cfa953032fbb8980a7d554d60fb00b17, < 1758a564b6ebe7f4a82f23c9851d1cae15549457; >= 82cae269cfa953032fbb8980a7d554d60fb00b17, < f1df9d771df47aa40de6d70949c28720ae1e430d |
| Linux | Linux | 5.15 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-72191?
How severe is CVE-2026-72191?
How do I fix CVE-2026-72191?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-72186In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2026-72187In the Linux kernel, the following vulnerability has been re…
- CVE-2026-72188In the Linux kernel, the following vulnerability has been re…9.1
- CVE-2026-72189In the Linux kernel, the following vulnerability has been re…
- CVE-2026-7219A flaw has been found in Totolink N300RT 3.4.0-B20250430. Th…7.3
- CVE-2026-72190In the Linux kernel, the following vulnerability has been re…
- CVE-2026-72192In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-72193In the Linux kernel, the following vulnerability has been re…
- CVE-2026-72194In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-72195In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-72196In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-72197In the Linux kernel, the following vulnerability has been re…8.4
Are you affected by CVE-2026-72191?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
