Skip to main content

Over 150 LLM Providers · Over 5,300 Models The most extensible AI-powered pentesting platform. Open source. Star on GitHub

CVE-2026-72210

9.8 · CRITICAL
Published Aug 15, 2026 EPSS 0.52% (42th pctl)

Overview

CVE-2026-72210 is a critical-severity vulnerability. It was published on August 15, 2026 and has a CVSS 3.1 base score of 9.8 (CRITICAL).

This vulnerability has a CVSS 3.1 base score of 9.8, rated CRITICAL. It can be exploited remotely over the network. No authentication or special privileges are required for exploitation.

Technical 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.

Remediation

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

Frequently Asked Questions

What is CVE-2026-72210?

CVE-2026-72210 is a critical-severity vulnerability. It was published on August 15, 2026 and has a CVSS 3.1 base score of 9.8 (CRITICAL).

How severe is CVE-2026-72210?

This vulnerability has a CVSS 3.1 base score of 9.8, rated CRITICAL. It can be exploited remotely over the network. No authentication or special privileges are required for exploitation.

How do I fix or remediate CVE-2026-72210?

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

How can CyberStrike help with CVE-2026-72210?

CyberStrike's AI-powered security agents can automatically detect CVE-2026-72210 across your infrastructure using autonomous pentesting, DAST scanning, and HackBrowser. The platform continuously monitors for known vulnerabilities and provides actionable remediation guidance prioritized by real-world exploitability.