CVE-2025-39999
BaseFortify
Publication date: 2025-10-15
Last updated on: 2025-10-16
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.15.160 (inc) to 5.16 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a double free issue in the Linux kernel's blk-mq subsystem. When the number of requests (nr_requests) grows via the queue sysfs attribute, the blk_mq_tags structure is freed and replaced with a new allocation. However, the elevator's tags pointer still references the freed memory, causing it to be freed again later during elevator exit. This double free can lead to a kernel panic. The fix involves updating the elevator's tags pointer to the new allocation to prevent the double free.
How can this vulnerability impact me? :
This vulnerability can cause a kernel panic, which leads to a system crash and potential denial of service. If exploited or triggered, it can disrupt system availability and stability, potentially causing data loss or requiring a system reboot.