Cyber Resilience

CVE-2025-37967

Linux Kernel 5.2 – 5.15.184

Published
20 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.0012 2th percentile
Risk Priority 35 floored blend · peak EPSS

Summary

CVE-2025-37967 is a medium-severity Improper Locking (CWE-667) vulnerability in Linux Linux Kernel. Its CVSS base score is 5.5 (Medium).

Operationally, ranked at the 2th 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: usb: typec: ucsi: displayport: Fix deadlock This patch introduces the ucsi_con_mutex_lock / ucsi_con_mutex_unlock functions to the UCSI driver. ucsi_con_mutex_lock ensures the connector mutex is only locked if a connection is…

more

established and the partner pointer is valid. This resolves a deadlock scenario where ucsi_displayport_remove_partner holds con->mutex waiting for dp_altmode_work to complete while dp_altmode_work attempts to acquire it.

CWE(s)

Related Threats

CVEs Like This One

CVE-2024-26925Same product: Debian Debian Linux
CVE-2025-38650Same product: Debian Debian Linux
CVE-2025-38058Same product: Debian Debian Linux
CVE-2025-39773Same product: Debian Debian Linux
CVE-2025-37741Same product: Debian Debian Linux
CVE-2024-36919Same product: Debian Debian Linux
CVE-2024-26999Same product: Debian Debian Linux
CVE-2025-38491Same product: Debian Debian Linux
CVE-2025-37969Same product: Debian Debian Linux
CVE-2025-23163Same product: Debian Debian Linux

Affected Assets

linux
linux kernel
6.15 · 5.2 — 5.15.184 · 5.16 — 6.1.140 · 6.2 — 6.6.92
debian
debian linux
11.0

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)
  • AC-3 Access Enforcement
  • SC-39 Process Isolation
Detect
Catch it (NIST detect / respond)
  • SI-7 Software, Firmware, and Information Integrity
Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)

Mitigating Controls (NIST 800-53 r5) AI

prevent

Mutex acquisition around the connector object directly implements access enforcement on a shared kernel resource, preventing the concurrent access that produces the deadlock.

prevent

Process/thread isolation boundaries limit the visibility and locking scope of dp_altmode_work versus ucsi_displayport_remove_partner, reducing deadlock windows in the UCSI driver.

detect

Integrity verification of kernel modules can detect the flawed locking implementation before the vulnerable code is loaded and executed.

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 code reviews, static analysis, and concurrency standards that prevent improper locking.

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 can detect race conditions and locking errors before release.

prevents

Secure development lifecycle includes concurrency and locking requirements that reduce improper locking defects.

prevents

Application security requirements can mandate proper lock acquisition/release patterns.

prevents

Secure architecture principles address thread-safety and resource synchronization.

prevents

Secure coding standards directly prohibit missing or incorrect lock usage.

prevents

Change management may catch locking issues introduced by modifications but does not prevent the weakness itself.

References