CVE-2023-53303
BaseFortify
Publication date: 2025-09-16
Last updated on: 2025-12-02
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 6.3 (inc) to 6.5.4 (exc) |
| linux | linux_kernel | 6.6 |
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 microchip vcap API, specifically in the vcap_dup_rule() function. When a certain configuration (CONFIG_VCAP_KUNIT_TEST) is selected, if memory allocation with kzalloc() succeeds but a subsequent kmemdup() call fails, allocated memory for duprule, ckf, and caf is not freed, causing a memory leak. The fix involves freeing this memory in the error path to prevent the leak.
How can this vulnerability impact me? :
The impact of this vulnerability is a potential memory leak in the Linux kernel when using the microchip vcap API under specific test configurations. This could lead to increased memory usage and possible system instability or crashes if the leak occurs repeatedly or in critical environments.