CVE-2025-39765
BaseFortify
Publication date: 2025-09-11
Last updated on: 2025-11-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.17 |
| linux | linux_kernel | 6.17 |
| 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-476 | The product dereferences a pointer that it expects to be valid but is NULL. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is in the Linux kernel's ALSA timer subsystem. It occurs in the snd_utimer_create() function where, if the kasprintf() function returns NULL, the code calls snd_utimer_put_id(), which then calls ida_free() to free an ID that was never allocated (ID 0). This improper freeing of an unallocated ID can lead to a warning or potential instability in the kernel. The fix ensures that the utimer->id is properly set before kasprintf() is called, so that snd_utimer_put_id() only frees an allocated ID.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to attempt to free an unallocated ID, which may lead to kernel warnings, instability, or crashes. Such behavior can affect system reliability and potentially cause denial of service if exploited or triggered.