VYPR
Unrated severityNVD Advisory· Published Dec 8, 2025· Updated Apr 15, 2026

CVE-2023-53745

CVE-2023-53745

Description

In the Linux kernel, the following vulnerability has been resolved:

um: vector: Fix memory leak in vector_config

If the return value of the uml_parse_vector_ifspec function is NULL, we should call kfree(params) to prevent memory leak.

AI Insight

LLM-synthesized narrative grounded in this CVE's description and references.

Memory leak in Linux kernel UML vector_config when uml_parse_vector_ifspec returns NULL; missing kfree(params) leads to unreleased memory.

Vulnerability

The vulnerability is a memory leak in the vector_config function of the Linux kernel's User Mode Linux (UML) networking code. When the uml_parse_vector_ifspec function returns NULL, the memory allocated for params via kzalloc is not freed. This oversight can lead to a gradual depletion of kernel memory.

Exploitation

An attacker with the ability to supply a malformed vector interface specification, such as through a crafted UML configuration, can trigger the NULL return path. No authentication is required if the configuration input is untrusted, and the attack surface is limited to systems using UML networking.

Impact

Successfully exploiting this memory leak can result in denial of service by exhausting available memory. The leak is persistent across repeated trigger attempts, eventually causing system instability or crash.

Mitigation

Patches have been applied to the Linux kernel stable branches, as seen in commit [1]. Users are advised to update to the latest kernel version. The fix adds a kfree(params) call after the NULL check to properly release the allocated memory.

AI Insight generated on May 19, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.

Affected products

2

Patches

7

Vulnerability mechanics

Generated on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

7

News mentions

0

No linked articles in our index yet.