CVE-2025-68182
BaseFortify
Publication date: 2025-12-16
Last updated on: 2025-12-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
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 potential use-after-free issue in the Linux kernel's iwlwifi driver. Specifically, the code frees a 'link' object using kfree_rcu(link, rcu_head) but then dereferences the freed 'link' to access 'link->fw_id'. This can lead to accessing memory that has already been freed, which is unsafe. The fix involves saving 'link->fw_id' before freeing the 'link' to avoid this problem.
How can this vulnerability impact me? :
The use-after-free vulnerability could lead to undefined behavior such as system crashes, memory corruption, or potentially allow an attacker to execute arbitrary code or cause denial of service on systems using the affected iwlwifi driver.