CVE-2025-38621
BaseFortify
Publication date: 2025-08-22
Last updated on: 2025-11-26
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) |
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 in the Linux kernel involves a NULL pointer dereference in the md (multiple device) subsystem. Specifically, the function rdev_addable is called within an RCU (Read-Copy-Update) protected context, but the rdev->mddev pointer can be set to NULL before a synchronize_rcu call, leading to a kernel panic due to accessing a NULL pointer. The fix involves using READ_ONCE to safely check if rdev->mddev is still valid before proceeding.
How can this vulnerability impact me? :
This vulnerability can cause a kernel panic, leading to a system crash or denial of service. This can disrupt normal operations, cause data loss, or require system reboot, impacting system availability and reliability.