CVE-2022-50537
BaseFortify
Publication date: 2025-10-07
Last updated on: 2026-02-26
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.16 (inc) to 6.0.16 (inc) |
| raspberrypi | firmware | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-401 | The product does not sufficiently track and release allocated memory after it has been used, making the memory unavailable for reallocation and reuse. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a possible memory leak in the Linux kernel's raspberrypi firmware component. Specifically, in the function rpi_firmware_probe(), if the call to mbox_request_channel() fails, the firmware object ('fw') is not properly freed because rpi_firmware_delete() is not called. This leads to a memory leak. The fix involves calling kfree() in the error path to ensure the memory is released.
How can this vulnerability impact me? :
The impact of this vulnerability is a potential memory leak in the Linux kernel when using the raspberrypi firmware. Over time, this could lead to increased memory usage and possibly system instability or crashes if the leak is significant and persistent.