CVE-2022-50321
BaseFortify
Publication date: 2025-09-15
Last updated on: 2025-12-03
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.13 (inc) to 4.14.308 (exc) |
| linux | linux_kernel | From 4.15 (inc) to 4.19.276 (exc) |
| linux | linux_kernel | From 4.20 (inc) to 5.4.235 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.173 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.99 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.16 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.2.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 a potential memory leak in the Linux kernel's brcmfmac WiFi driver. Specifically, the function brcmf_netdev_start_xmit() fails to free allocated memory (skb) when the pskb_expand_head() function fails, which can lead to memory not being properly released. The fix involves adding a call to dev_kfree_skb() to ensure the memory is freed in such failure cases.
How can this vulnerability impact me? :
The impact of this vulnerability is a potential memory leak in the WiFi driver, which could lead to increased memory usage and possibly degrade system performance or stability over time if the leak accumulates.