Get a Demo

Let's Patch It!

Book a short call with one our specialists, we'll walk you through how Endor Patches work, and ask you a few questions about your environment (like your primary programming languages and repository management). We'll also send you an email right after you fill out the form, feel free to reply with any questions you have in advance!

CVE

CVE-2026-72210

ntfs: fix off-by-one in mapping pairs decoding bounds checks
Back to all
CVE

CVE-2026-72210

ntfs: fix off-by-one in mapping pairs decoding bounds checks

In the Linux kernel, the following vulnerability has been resolved:

ntfs: fix off-by-one in mapping pairs decoding bounds checks

In ntfsmappingpairsdecompress(), attrend points one byte past the

end of the attribute record:

    attrend = (u8 *)attr + le32to_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.

Package Versions Affected

Package Version
patch Availability
No items found.

Automatically patch vulnerabilities without upgrading

Fix Without Upgrading
Detect compatible fix
Apply safe remediation
Fix with a single pull request

CVSS Version

Severity
Base Score
CVSS Version
Score Vector
C
H
U
9.8
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
0
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
-

Related Resources

No items found.

References

https://git.kernel.org/stable/c/18760a74ef7c28df93726445b5595162e62ed341, https://git.kernel.org/stable/c/bfe835e535fe0aa5767fdd8116f62e835ba50b55, https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/72xxx/CVE-2026-72210.json, https://nvd.nist.gov/vuln/detail/CVE-2026-72210, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Severity

9.8

CVSS Score
0
10

Basic Information

Base CVSS
9.8
EPSS Probability
0.00516%
EPSS Percentile
0.41721%
Introduced Version
1e9ea7e04472d4e5e12e58c881eaacfb3e49b669,7.1.0,0
Fix Available
18760a74ef7c28df93726445b5595162e62ed341,7.1.5

Fix Critical Vulnerabilities Instantly

Secure your app without upgrading.
Fix Without Upgrading