CVE-2026-90118
Last modified
CVE-2026-90118 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: ntfs: fix off-by-one page overflow in ntfs_decompress() The per-token range check in ntfs_decompress() uses if (cb >= cb_sb_end || dp_addr > dp_sb_end) break; so dp_addr == dp_sb_end falls through to the symbol copy `*dp_addr++ = *cb++`, writing one byte past the destination page. Since NTFS_SB_SIZE == PAGE_SIZE the destination is a single page, so the byte lands in the adjacent page, and *dest_ofs is left one past the sub-block end (the later `*dest_ofs &= ~PAGE_MASK` then yields 1, not 0, so the page is never finalized and later sub-blocks keep writing further past it).
Description
In the Linux kernel, the following vulnerability has been resolved: ntfs: fix off-by-one page overflow in ntfs_decompress() The per-token range check in ntfs_decompress() uses if (cb >= cb_sb_end || dp_addr > dp_sb_end) break; so dp_addr == dp_sb_end falls through to the symbol copy `*dp_addr++ = *cb++`, writing one byte past the destination page. Since NTFS_SB_SIZE == PAGE_SIZE the destination is a single page, so the byte lands in the adjacent page, and *dest_ofs is left one past the sub-block end (the later `*dest_ofs &= ~PAGE_MASK` then yields 1, not 0, so the page is never finalized and later sub-blocks keep writing further past it). A corrupted compressed $DATA attribute thus produces a bounded run of out-of-bounds writes when the file is read. Break as soon as dp_addr reaches dp_sb_end; a full sub-block still completes, as its final copy advances dp_addr to exactly dp_sb_end.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 1e9ea7e04472d4e5e12e58c881eaacfb3e49b669, < b42644e425fed4a5cd6c88372655da5c1b52c666; >= 1e9ea7e04472d4e5e12e58c881eaacfb3e49b669, < 98716c9fce21f6c8a9d71e08cf53e7504fa562f4 |
| Linux | Linux | 7.1 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-90118?
How severe is CVE-2026-90118?
How do I fix CVE-2026-90118?
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-90112In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90113In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90114In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90115In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90116In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90117In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90119In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9012Rejected reason: This CVE ID has been rejected or withdrawn …
- CVE-2026-90120In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-90121In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90122In the Linux kernel, the following vulnerability has been re…
- CVE-2026-90123In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-90118?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
