Cyber Resilience

CVE-2025-37887

Linux Kernel 6.4 – 6.6.89

Published
09 May 2025
Modified
17 June 2026
Patch / advisory
CVSS Score v3.1 5.5
Click a component to see what it means
Raw vectorCVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
EPSS Score 0.0023 14th percentile
Risk Priority 35 floored blend · peak EPSS

Summary

CVE-2025-37887 is a medium-severity Use of Uninitialized Resource (CWE-908) vulnerability in Linux Linux Kernel. Its CVSS base score is 5.5 (Medium).

Operationally, ranked at the 14th 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 SI-11 (Error Handling) and SI-2 (Flaw Remediation) — 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: pds_core: handle unsupported PDS_CORE_CMD_FW_CONTROL result If the FW doesn't support the PDS_CORE_CMD_FW_CONTROL command the driver might at the least print garbage and at the worst crash when the user runs…

more

the "devlink dev info" devlink command. This happens because the stack variable fw_list is not 0 initialized which results in fw_list.num_fw_slots being a garbage value from the stack. Then the driver tries to access fw_list.fw_names[i] with i >= ARRAY_SIZE and runs off the end of the array. Fix this by initializing the fw_list and by not failing completely if the devcmd fails because other useful information is printed via devlink dev info even if the devcmd fails.

CWE(s)

Related Threats

CVEs Like This One

CVE-2023-52792Same product: Linux Linux Kernel
CVE-2023-53525Same product: Linux Linux Kernel
CVE-2025-21891Same product: Linux Linux Kernel
CVE-2026-31626Same product: Linux Linux Kernel
CVE-2025-71113Same product: Linux Linux Kernel
CVE-2024-42283Same product: Linux Linux Kernel
CVE-2024-40926Same product: Linux Linux Kernel
CVE-2023-53351Same product: Linux Linux Kernel
CVE-2024-53155Same product: Linux Linux Kernel
CVE-2023-53555Same product: Linux Linux Kernel

Affected Assets

linux
linux kernel
6.15 · 6.4 — 6.6.89 · 6.7 — 6.12.26 · 6.13 — 6.14.5

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)
  • SI-11 Error Handling
  • SA-11 Developer Testing and Evaluation
  • SI-2 Flaw Remediation
Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly requires proper error handling for unsupported FW command results so the driver does not dereference uninitialized stack data or overrun arrays.

prevent

Mandates developer testing and static-analysis evaluation that would detect use of uninitialized variables (CWE-908) before the driver is released.

prevent

Requires timely application of the kernel patch that initializes fw_list and gracefully handles the unsupported devcmd.

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 activities such as static analysis and code review directly prevent use of uninitialized resources while also addressing many other weaknesses.

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.

detects

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

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.

prevents

Secure coding standards directly require explicit initialization of all variables and resources, substantially mitigating CWE-908.

References