CVE-2022-50065
BaseFortify
Publication date: 2025-06-18
Last updated on: 2025-11-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) |
| 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-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 virtio_net driver related to the XDP (eXpress Data Path) transmit path with mergeable buffers. Specifically, when the function xdp_convert_buff_to_frame() returns NULL, the code should check if the xdp_page was allocated by xdp_linearize_page() and free it if it was newly allocated. Failure to do so causes a memory leak.
How can this vulnerability impact me? :
The memory leak can lead to increased memory usage over time, potentially causing system instability or degraded performance if the leaked memory accumulates.