CVE-2025-38198
BaseFortify
Publication date: 2025-07-04
Last updated on: 2025-12-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | to 6.1.142 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.6.95 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.35 (exc) |
| linux | linux_kernel | From 6.13 (inc) to 6.15.4 (exc) |
| debian | debian_linux | 11.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-129 | The product uses untrusted input when calculating or using an array index, but the product does not validate or incorrectly validates the index to ensure the index references a valid position within the array. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel's framebuffer console (fbcon) occurs when attempting to write to the 'store_modes' sysfs node for an unregistered console. Specifically, an array index out-of-bounds error happens because the con2fb_map array can contain a -1 value, which is used as an index into the fbcon_registered_fb array. This leads to accessing invalid memory. The fix involves returning NULL when con2fb_map contains -1, allowing proper error handling instead of causing an out-of-bounds access.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to access invalid memory due to an out-of-bounds array index, potentially leading to kernel crashes or instability. This could affect system reliability and availability, possibly causing denial of service conditions.