CVE-2025-39994
BaseFortify
Publication date: 2025-10-15
Last updated on: 2025-10-29
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update the Linux kernel to a version where the fix is applied. The fix replaces cancel_delayed_work() with cancel_delayed_work_sync() in the xc5000_release() function to prevent use-after-free conditions. Applying this patch or upgrading to a kernel version including this fix will address the issue.
How can this vulnerability impact me? :
This vulnerability can lead to use-after-free conditions, which may cause system instability, crashes, or potentially allow an attacker to execute arbitrary code or escalate privileges by exploiting the race condition in the kernel's media tuner driver.
Can you explain this vulnerability to me?
This vulnerability is a use-after-free issue in the Linux kernel's media tuner driver for the xc5000 device. The problem occurs because the function xc5000_release() uses cancel_delayed_work() which does not guarantee that a delayed work item (timer_sleep) has fully completed before the memory (xc5000_priv) is freed. As a result, the delayed work callback may still try to access the freed memory, causing a use-after-free condition. The fix replaces cancel_delayed_work() with cancel_delayed_work_sync() to ensure the delayed work is fully canceled before freeing the memory, preventing the use-after-free.