CVE-2025-38250
BaseFortify
Publication date: 2025-07-09
Last updated on: 2026-03-25
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 | 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-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 use-after-free bug in the Linux kernel's Bluetooth subsystem, specifically in the vhci_flush() function. It occurs when one thread closes a vhci file descriptor while another thread is still using the device via ioctl(). After the last reference to the file descriptor is released, the kernel frees the associated data structure without proper synchronization, which can lead to another thread accessing freed memory. The fix involves adding synchronization using SRCU to ensure no threads access the device after it has been unlinked and freed.
How can this vulnerability impact me? :
This vulnerability can lead to use-after-free conditions, which may cause system crashes, data corruption, or potentially allow an attacker to execute arbitrary code or escalate privileges by exploiting the race condition in the Bluetooth driver. It affects the stability and security of systems using the vulnerable Linux kernel Bluetooth implementation.