CVE-2025-38290
BaseFortify
Publication date: 2025-07-10
Last updated on: 2025-11-19
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) |
| 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-672 | The product uses, accesses, or otherwise operates on a resource after that resource has been expired, released, or revoked. |
| 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 in the Linux kernel's ath12k wireless driver. It involves corruption of the 'arvifs' list nodes during WLAN recovery. Specifically, the WLAN recovery code only reinitializes the list head but not the nodes following it, causing invalid list nodes. When a WLAN recovery happens during a virtual interface (vif) removal, this leads to an inconsistent list state that triggers a kernel panic due to list_del() detecting the corruption. The fix involves properly removing and reinitializing all vif list nodes during WLAN halt to ensure list integrity.
How can this vulnerability impact me? :
This vulnerability can cause a kernel panic on systems using the affected Linux kernel wireless driver (ath12k). A kernel panic results in a system crash and reboot, leading to potential denial of service and disruption of wireless network connectivity.
What immediate steps should I take to mitigate this vulnerability?
The vulnerability is fixed by updating the Linux kernel to include the patch that properly reinitializes all vif list nodes from the list head "arvifs" during WLAN halt. Immediate mitigation involves applying the kernel update that contains this fix to prevent kernel panic caused by the corrupted list nodes in the ath12k driver.