CVE-2025-38154
BaseFortify
Publication date: 2025-07-03
Last updated on: 2025-12-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 5.15.162 (inc) to 5.15.186 (exc) |
| linux | linux_kernel | From 6.1.95 (inc) to 6.1.142 (exc) |
| linux | linux_kernel | From 6.6.35 (inc) to 6.6.94 (exc) |
| linux | linux_kernel | From 6.9.6 (inc) to 6.10 (exc) |
| linux | linux_kernel | From 6.10.1 (inc) to 6.12.34 (exc) |
| linux | linux_kernel | From 6.13 (inc) to 6.15.3 (exc) |
| linux | linux_kernel | 6.10 |
| linux | linux_kernel | 6.10 |
| linux | linux_kernel | 6.10 |
| linux | linux_kernel | 6.10 |
| linux | linux_kernel | 6.10 |
| linux | linux_kernel | 6.10 |
| linux | linux_kernel | 6.10 |
| debian | debian_linux | 11.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-416 | The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory "belongs" to the code that operates on the new pointer. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a race condition in the Linux kernel's handling of socket buffers (bpf, sockmap). Specifically, the sk_socket pointer is used after it has been freed during concurrent operations between sending data and closing sockets. This can cause a kernel panic due to accessing freed memory. The issue affects all socket types (tcp/udp/unix/vsock) and arises because the socket is not properly locked or referenced in the backlog thread, leading to unsafe concurrent access. The fix involves increasing the reference count and synchronizing the backlog and close threads to avoid use-after-free conditions.
How can this vulnerability impact me? :
This vulnerability can cause a kernel panic, leading to system crashes or instability when socket operations occur concurrently with socket closure. This can result in denial of service (DoS) conditions on affected systems, potentially disrupting network communications and services relying on the Linux kernel's socket handling.