CVE-2023-53345
BaseFortify
Publication date: 2025-09-17
Last updated on: 2025-12-10
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 6.2.1 (inc) to 6.2.16 (exc) |
| linux | linux_kernel | From 6.3 (inc) to 6.3.3 (exc) |
| linux | linux_kernel | 6.2 |
| linux | linux_kernel | 6.2 |
| linux | linux_kernel | 6.2 |
| linux | linux_kernel | 6.2 |
| linux | linux_kernel | 6.2 |
| linux | linux_kernel | 6.2 |
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 potential data race in the Linux kernel's rxrpc subsystem, specifically in the function rxrpc_wait_to_be_connected(). The issue arises because the code checks the call->error field inside a loop without first ensuring the call state is complete, which can lead to unexpected behavior or race conditions. The fix involves only accessing call->error after confirming the call is complete, preventing concurrent access issues.
How can this vulnerability impact me? :
This vulnerability can cause data races in the kernel's rxrpc networking code, potentially leading to kernel bugs or instability. Such race conditions might result in unexpected behavior, crashes, or security issues in systems using the affected Linux kernel code.