Cyber Resilience

CVE-2026-52989

Linux Kernel 5.10.250 – 5.11

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

Summary

CVE-2026-52989 is a critical-severity Use of Uninitialized Resource (CWE-908) vulnerability in Linux Linux Kernel. Its CVSS base score is 9.8 (Critical).

Operationally, exploitation aligns with the MITRE ATT&CK technique OS Credential Dumping (T1003); ranked at the 27th 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 SA-11 (Developer Testing and Evaluation) and SA-15 (Development Process, Standards, and Tools) — see the control section below for these in your framework.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

In the Linux kernel, the following vulnerability has been resolved: nvmet-tcp: propagate nvmet_tcp_build_pdu_iovec() errors to its callers Currently, when nvmet_tcp_build_pdu_iovec() detects an out-of-bounds PDU length or offset, it triggers nvmet_tcp_fatal_error(cmd->queue) and returns early. However, because the function returns void, the…

more

callers are entirely unaware that a fatal error has occurred and that the cmd->recv_msg.msg_iter was left uninitialized. Callers such as nvmet_tcp_handle_h2c_data_pdu() proceed to blindly overwrite the queue state with queue->rcv_state = NVMET_TCP_RECV_DATA Consequently, the socket receiving loop may attempt to read incoming network data into the uninitialized iterator. Fix this by shifting the error handling responsibility to the callers.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise Techniques

T1003 OS Credential Dumping Credential Access
Adversaries may attempt to dump credentials to obtain account login and credential material, normally in the form of a hash or a clear text password.
T1212 Exploitation for Credential Access Credential Access
Adversaries may exploit software vulnerabilities in an attempt to collect credentials.
T1552 Unsecured Credentials Credential Access
Adversaries may search compromised systems to find and obtain insecurely stored credentials.
Derived from this CVE’s CWE(s) via the direct CWE→ATT&CK cross-walk.

CVEs Like This One

CVE-2024-36900Same product: Linux Linux Kernel
CVE-2024-50273Same product: Linux Linux Kernel
CVE-2026-23101Same product: Linux Linux Kernel
CVE-2024-50237Same product: Linux Linux Kernel
CVE-2024-53155Same product: Linux Linux Kernel
CVE-2023-52842Same product: Linux Linux Kernel
CVE-2024-40931Same product: Linux Linux Kernel
CVE-2024-57910Same product: Linux Linux Kernel
CVE-2024-38593Same product: Linux Linux Kernel
CVE-2024-50173Same product: Linux Linux Kernel

Affected Assets

linux
linux kernel
6.19, 7.1 · 5.10.250 — 5.11 · 5.15.200 — 5.16 · 6.1.163 — 6.1.175

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

Developer testing and evaluation (including static analysis) can find uses of uninitialized resources after they are coded.

Requiring documented development standards and tools can mandate initialization checks and safe patterns that stop the weakness from being introduced.

Engineering principles can require explicit resource initialization before use, structurally avoiding uninitialized access.

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.

DE.AE-08 mostly match
prevents

Declaring incidents when criteria are met forces action on detected errors; eliminating the weakness helps but does not define the criteria themselves.

PR.PS-06 mostly match
prevents

Secure SDLC activities such as static analysis and code review directly prevent use of uninitialized resources while also addressing many other weaknesses.

RS.MA-02 mostly match
prevents

Triaging and validating reports compels follow-up on detections; removing the weakness supports but does not replace triage processes.

DE.AE-02 partial match
prevents

Analysis of detected events directly counters ignoring them, but does not guarantee every error condition is covered.

DE.CM-09 partial match
prevents

Monitoring produces detections, yet supplies no requirement to act on them.

PR.PS-04 partial match
prevents

Generating logs enables later action but does not enforce handling of each error condition.

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.

finds

Security testing in development and acceptance can detect uninitialized resource usage through dynamic analysis and fuzzing.

A.8.15 Logging partial match
finds

Logging captures error conditions but does not guarantee subsequent handling or remediation.

finds

Monitoring activities can detect errors, yet without defined response procedures the weakness persists.

prevents

Secure development life cycle mandates initialization checks and static analysis that can catch uninitialized resource use.

prevents

Application security requirements can specify mandatory initialization of variables and resources before use.

prevents

Secure system architecture and engineering principles include defensive coding practices that prevent use of uninitialized memory or objects.

References