CVE-2022-50094
BaseFortify
Publication date: 2025-06-18
Last updated on: 2025-11-18
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) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
| linux | linux_kernel | From 5.15.160 (inc) to 5.16 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-125 | The product reads data past the end, or before the beginning, of the intended buffer. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a stack-out-of-bounds memory access in the Linux kernel's SPMI tracing functions. Specifically, the functions trace_spmi_write_begin() and trace_spmi_read_end() call memcpy() with a length of 'len + 1', which causes one extra byte to be read beyond the end of the intended buffer. This can lead to reading unintended memory on the stack, which is a programming error fixed by changing the length to 'len' instead.
How can this vulnerability impact me? :
The vulnerability causes an out-of-bounds read on the stack, which can potentially lead to information disclosure or instability in the kernel. While the exact impact is not detailed, such memory access errors can cause crashes or expose sensitive data if exploited.