CVE-2026-80869
Last modified
CVE-2026-80869 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: ntfs: bound the attribute-list entry in ntfs_read_inode_mount() The $MFT attribute-list walk in ntfs_read_inode_mount() validates each entry only with "(u8 *)al_entry + 6 > al_end" and "(u8 *)al_entry + le16_to_cpu(al_entry->length) > al_end", but then reads al_entry->lowest_vcn (an __le64 at offset 8) and al_entry->mft_reference (offset 16) -- fields beyond the 6 bytes proven in range. al_entry->length is attacker-controlled and only required non-zero, so a short entry (e.g. length 8) placed at the tail passes both checks while the lowest_vcn / mft_reference reads fall past al_end. al_end is ni->attr_list + attr_list_size (the on-disk size); the buffer is kvzalloc(round_up(attr_list_size, SECTOR_SIZE)), so the sector rounding usually absorbs the over-read -- but when attr_list_size is a multiple of SECTOR_SIZE there is no slack and a crafted $MFT attribute list produces an out-of-bounds read at mount time. Validate the entry with ntfs_attr_list_entry_is_valid() (added in patch 1/3) before dereferencing it, matching the bound the other attribute-list walks now use.
Description
In the Linux kernel, the following vulnerability has been resolved: ntfs: bound the attribute-list entry in ntfs_read_inode_mount() The $MFT attribute-list walk in ntfs_read_inode_mount() validates each entry only with "(u8 *)al_entry + 6 > al_end" and "(u8 *)al_entry + le16_to_cpu(al_entry->length) > al_end", but then reads al_entry->lowest_vcn (an __le64 at offset 8) and al_entry->mft_reference (offset 16) -- fields beyond the 6 bytes proven in range. al_entry->length is attacker-controlled and only required non-zero, so a short entry (e.g. length 8) placed at the tail passes both checks while the lowest_vcn / mft_reference reads fall past al_end. al_end is ni->attr_list + attr_list_size (the on-disk size); the buffer is kvzalloc(round_up(attr_list_size, SECTOR_SIZE)), so the sector rounding usually absorbs the over-read -- but when attr_list_size is a multiple of SECTOR_SIZE there is no slack and a crafted $MFT attribute list produces an out-of-bounds read at mount time. Validate the entry with ntfs_attr_list_entry_is_valid() (added in patch 1/3) before dereferencing it, matching the bound the other attribute-list walks now use. The validator already requires the length to cover the fixed header, which makes the separate "!al_entry->length" check redundant, so drop it too.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 1e9ea7e04472d4e5e12e58c881eaacfb3e49b669, < c7a7e48e71ce915ec4cbd6e9f355590c1ecbc29a; >= 1e9ea7e04472d4e5e12e58c881eaacfb3e49b669, < 98634df5b1cb56c26299b7409227025ddb0167d8 |
| Linux | Linux | 7.1 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-80869?
How severe is CVE-2026-80869?
How do I fix CVE-2026-80869?
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-80863In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80864In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80865In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80866In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80867In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80868In the Linux kernel, the following vulnerability has been re…
- CVE-2026-8087A security flaw has been discovered in OSGeo gdal up to 3.13…7.8
- CVE-2026-80870In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80871In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80872In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80873In the Linux kernel, the following vulnerability has been re…
- CVE-2026-80874In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-80869?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
