CVE-2025-39861
BaseFortify
Publication date: 2025-09-19
Last updated on: 2025-12-12
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.4 (inc) to 6.6.105 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.46 (exc) |
| linux | linux_kernel | From 6.13 (inc) to 6.16.6 (exc) |
| linux | linux_kernel | 6.17 |
| linux | linux_kernel | 6.17 |
| linux | linux_kernel | 6.17 |
| linux | linux_kernel | 6.17 |
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 issue in the Linux kernel's Bluetooth vhci component. Debugfs files like "force_suspend" and "force_wakeup" were created but not properly removed before the associated vhci_data structures were freed. This means that after vhci_release() frees the data, users could still access these debugfs files, leading to use-after-free errors.
How can this vulnerability impact me? :
The vulnerability can lead to use-after-free errors, which may cause system instability, crashes, or potentially allow an attacker to execute arbitrary code or escalate privileges by accessing freed memory through the debugfs files.