CVE-2025-40232
BaseFortify
Publication date: 2025-12-04
Last updated on: 2025-12-04
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 in the Linux kernel involves inconsistent handling of an iterator in the enabled_monitors_seq_ops callbacks. Some callbacks treat the iterator as a pointer to struct rv_monitor, while others treat it as a pointer to struct list_head. This type mismatch causes a wrong type cast, which can lead to system crashes. The fix was to convert all uses to consistently treat the iterator as struct list_head *, aligning enabled_monitors with available_monitors.
How can this vulnerability impact me? :
This vulnerability can cause the system to crash due to incorrect type casting in the Linux kernel's enabled_monitors sequence operations. Such crashes can lead to system instability or downtime.