CVE-2025-38524
BaseFortify
Publication date: 2025-08-16
Last updated on: 2025-11-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.16 |
| linux | linux_kernel | 6.16 |
| linux | linux_kernel | 6.16 |
| linux | linux_kernel | 6.16 |
| linux | linux_kernel | 6.16 |
| linux | linux_kernel | 6.16 |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-362 | The product contains a concurrent code sequence that requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence operating concurrently. |
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 rxrpc module related to handling incoming events on a socket. When multiple threads process events from the same call, one thread may release the call while another thread is still processing it, leading to a kernel BUG (crash). The issue occurs because the second thread tries to access a call that has already been released by the first thread. The fix involves checking if the call has already been released and ignoring it if so, preventing the kernel crash.
How can this vulnerability impact me? :
This vulnerability can cause a kernel crash (kernel BUG) in the Linux system when multiple threads concurrently process events from the same rxrpc call. This can lead to system instability, potential denial of service, and unexpected behavior in applications relying on rxrpc communication.