CVE-2022-50355
BaseFortify
Publication date: 2025-09-17
Last updated on: 2025-12-10
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 4.18 (inc) to 4.19.262 (exc) |
| linux | linux_kernel | From 4.20 (inc) to 5.4.220 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.150 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.75 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 5.19.17 (exc) |
| linux | linux_kernel | From 6.0 (inc) to 6.0.3 (exc) |
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 in the Linux kernel's vt6655 driver. During initialization, memory is allocated in a loop indexed by 'i'. If memory allocation fails, cleanup loops free allocated memory in reverse order by decreasing 'i'. However, the cleanup code has errors: it skips the case when i=0, causing memory leaks, and if allocation fails immediately (i=-1), the cleanup loops access invalid memory locations. Some loops were fixed, but others remained erroneous.
How can this vulnerability impact me? :
The vulnerability can lead to memory leaks and invalid memory accesses during driver initialization. Memory leaks can degrade system performance over time, and invalid memory accesses can cause system instability or crashes.