CVE-2025-40156
BaseFortify
Publication date: 2025-11-12
Last updated on: 2025-11-12
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 in the Linux kernel's PM / devfreq subsystem, specifically in the mtk-cci driver. The issue is that the drv->sram_reg pointer could be set to an error pointer (ERR_PTR(-EPROBE_DEFER)) but was not properly checked before use, leading to a potential error pointer dereference. The fix involves using IS_ERR_OR_NULL() to ensure the pointer is valid before dereferencing it.
How can this vulnerability impact me? :
If exploited, this vulnerability could cause the Linux kernel to dereference an invalid error pointer, potentially leading to kernel crashes or instability. This could affect system reliability and availability.