CVE-2023-53252
BaseFortify
Publication date: 2025-09-15
Last updated on: 2025-12-03
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.17 (inc) to 6.1.42 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.4.7 (exc) |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
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 in the Linux kernel's Bluetooth subsystem involves unsafe iteration over connection parameter lists without proper locking. Specifically, the function hci_update_accept_list_sync iterates over lists that can be modified concurrently, leading to use-after-free errors and invalid behavior. The issue arises because the code waits for controller events inside the loop without holding the necessary lock, allowing the lists to be changed by other functions like le_scan_cleanup. The fix involves using Read-Copy-Update (RCU) mechanisms and copying list items before iterating to prevent invalid memory access.
How can this vulnerability impact me? :
This vulnerability can cause use-after-free errors in the Bluetooth subsystem of the Linux kernel, potentially leading to system instability, crashes, or unexpected behavior when handling Bluetooth connections. It may be triggered by certain Bluetooth management operations or testing scenarios, which could disrupt normal Bluetooth functionality or compromise system reliability.