CVE-2025-38609
BaseFortify
Publication date: 2025-08-19
Last updated on: 2025-11-03
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.1.153 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability involves the Linux kernel's power management (PM) and devfreq subsystem. A code change removed a redundant governor_name field and replaced its usage with governor->name. However, the devfreq->governor pointer may be NULL, and using governor->name without checking if governor is NULL can cause a null pointer exception (crash). The fix was to add a check to ensure governor is not NULL before accessing governor->name.
How can this vulnerability impact me? :
If exploited, this vulnerability can cause a null pointer exception in the Linux kernel, potentially leading to a kernel crash or system instability. This could result in denial of service or unexpected system behavior.