Cyber Resilience

CVE-2026-53250

Race Condition in Linux Kernel 6.8 – 6.18.36

Published
25 June 2026
Modified
08 July 2026
Patch / advisory
CVSS Score v3.1 7.8
Click a component to see what it means
Raw vectorCVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
EPSS Score 0.0010 1th percentile
Risk Priority 55 floored blend · peak EPSS

Summary

CVE-2026-53250 is a high-severity Time-of-check Time-of-use (TOCTOU) Race Condition (CWE-367) vulnerability in Linux Linux Kernel. Its CVSS base score is 7.8 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploitation for Privilege Escalation (T1068); ranked at the 1th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified map to AC-3 (Access Enforcement) and SC-39 (Process Isolation) — see the control section below for these in your framework.

EU & UK References

Vulnerability Data

In the Linux kernel, the following vulnerability has been resolved: xsk: cache csum_start/csum_offset to fix TOCTOU in xsk_skb_metadata() The TX metadata area resides in the UMEM buffer which is memory-mapped and concurrently writable by userspace. In xsk_skb_metadata(), csum_start and csum_offset…

more

are read from shared memory for bounds validation, then read again for skb assignment. A malicious userspace application can race to overwrite these values between the two reads, bypassing the bounds check and causing out-of-bounds memory access during checksum computation in the transmit path. Fix this by reading csum_start and csum_offset into local variables once, then using the local copies for both validation and assignment. Note that other metadata fields (flags, launch_time) and the cached csum fields may be mutually inconsistent due to concurrent userspace writes, but this is benign: the only security-critical invariant is that each field's validated value is the same one used, which local caching guarantees.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1068 Exploitation for Privilege Escalation Privilege Escalation
Adversaries may exploit software vulnerabilities in an attempt to elevate privileges.
Why these techniques?

Kernel TOCTOU race in shared UMEM metadata allows local attacker to trigger OOB memory access for privilege escalation.

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-31678Same product: Linux Linux Kernel
CVE-2026-52991Same product: Linux Linux Kernel
CVE-2026-46227Same product: Linux Linux Kernel
CVE-2025-38217Same product: Linux Linux Kernel
CVE-2023-52478Same product: Linux Linux Kernel
CVE-2025-22060Same product: Linux Linux Kernel
CVE-2025-21746Same product: Linux Linux Kernel
CVE-2025-21958Same product: Linux Linux Kernel
CVE-2024-50234Same product: Linux Linux Kernel
CVE-2024-50220Same product: Linux Linux Kernel

Affected Assets

linux
linux kernel
7.1 · 6.8 — 6.18.36 · 6.19 — 7.0.13

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)
  • AC-3 Access Enforcement
  • SC-39 Process Isolation
  • SI-10 Information Input Validation
Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)
  • V15.4.2
  • V17.2.6

Mitigating Controls (NIST 800-53 r5) AI

prevent

Enforces that the kernel (not userspace) controls the authoritative values used for csum_start/csum_offset, preventing the TOCTOU race on the memory-mapped UMEM metadata.

prevent

Process isolation ensures the kernel's local copies of csum_start/csum_offset cannot be modified by the untrusted userspace process after validation.

prevent

Requires validation of all untrusted input (the metadata area) before use; the fix implements this by caching the validated values so they cannot change between check and use.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure SDLC practices directly include coding standards and reviews that prevent TOCTOU race conditions.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

none

Reliable, synchronized time across systems narrows the exploitable window in which a resource state can change between a security check and its use.

References