CVE-2025-39966
BaseFortify
Publication date: 2025-10-15
Last updated on: 2026-02-26
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 | From 5.15.160 (inc) to 5.16 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-362 | The product contains a concurrent code sequence that requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence operating concurrently. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a use-after-free (UAF) issue in the Linux kernel's iommufd component. It occurs because the file descriptor's release function is not called synchronously, leading to a race condition. When an allocation of a new iommufd object aborts before the file is fully installed, the file is put on a work queue for release, but the object is immediately freed. Later, when the work queue processes the file release, it tries to access the already freed object, causing a use-after-free error.
How can this vulnerability impact me? :
This vulnerability can cause kernel memory corruption due to use-after-free, potentially leading to system instability, crashes, or exploitation by attackers to execute arbitrary code or escalate privileges within the kernel.