CVE-2023-53611
BaseFortify
Publication date: 2025-10-04
Last updated on: 2026-03-17
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) |
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 memory leak in the Linux kernel's ipmi_si driver, specifically in the try_smi_init() function. When an error occurs after allocating memory for new_smi->si_sm but before handlers are registered, the allocated memory is not freed properly because the shutdown_smi() function has not been registered yet. This causes the memory to remain allocated and unreferenced, leading to a memory leak. The fix involves adding a kfree() call in the error handling path to free the allocated memory.
How can this vulnerability impact me? :
This memory leak can cause increased memory usage over time in systems running the affected Linux kernel, potentially leading to reduced system performance or stability issues if the leak accumulates significantly.