CVE-2026-72210
Last modified
CVE-2026-72210 is a critical-severity vulnerability rated 9.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: ntfs: fix off-by-one in mapping pairs decoding bounds checks In ntfs_mapping_pairs_decompress(), attr_end points one byte past the end of the attribute record: attr_end = (u8 *)attr + le32_to_cpu(attr->length); The two bounds checks validating that mapping pair data bytes fit within the attribute use strict greater-than (>), which allows a one-byte out-of-bounds read when the data extends exactly to attr_end: b = *buf & 0xf; if (b) { if (unlikely(buf + b > attr_end)) // off-by-one goto io_error; for (deltaxcn = (s8)buf[b--]; b; b--) deltaxcn = (deltaxcn << 8) + buf[b]; } When buf + b == attr_end, the check evaluates to false and buf[b] reads one byte past the valid attribute boundary. The same pattern appears in the LCN delta bytes check. Fix both checks to use >= so that buf[b] at exactly attr_end is correctly rejected as out of bounds.. EPSS estimates a 0.52% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: ntfs: fix off-by-one in mapping pairs decoding bounds checks In ntfs_mapping_pairs_decompress(), attr_end points one byte past the end of the attribute record: attr_end = (u8 *)attr + le32_to_cpu(attr->length); The two bounds checks validating that mapping pair data bytes fit within the attribute use strict greater-than (>), which allows a one-byte out-of-bounds read when the data extends exactly to attr_end: b = *buf & 0xf; if (b) { if (unlikely(buf + b > attr_end)) // off-by-one goto io_error; for (deltaxcn = (s8)buf[b--]; b; b--) deltaxcn = (deltaxcn << 8) + buf[b]; } When buf + b == attr_end, the check evaluates to false and buf[b] reads one byte past the valid attribute boundary. The same pattern appears in the LCN delta bytes check. Fix both checks to use >= so that buf[b] at exactly attr_end is correctly rejected as out of bounds.
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 | >= 1e9ea7e04472d4e5e12e58c881eaacfb3e49b669, < bfe835e535fe0aa5767fdd8116f62e835ba50b55; >= 1e9ea7e04472d4e5e12e58c881eaacfb3e49b669, < 18760a74ef7c28df93726445b5595162e62ed341 |
| Linux | Linux | 7.1 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-72210?
How severe is CVE-2026-72210?
How do I fix CVE-2026-72210?
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-72205In the Linux kernel, the following vulnerability has been re…
- CVE-2026-72206In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-72207In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-72208In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-72209In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-7221A vulnerability was found in TencentCloudBase CloudBase-MCP …7.3
- CVE-2026-72211In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-72212In the Linux kernel, the following vulnerability has been re…
- CVE-2026-72213In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-72214In the Linux kernel, the following vulnerability has been re…
- CVE-2026-72215In the Linux kernel, the following vulnerability has been re…
- CVE-2026-72216In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-72210?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
