CVE-2022-50454
BaseFortify
Publication date: 2025-10-01
Last updated on: 2025-10-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 5.15.160 (inc) to 5.16 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a use-after-free bug in the Linux kernel's nouveau driver, specifically in the function nouveau_gem_prime_import_sg_table(). When nouveau_bo_init() fails, it frees memory, but a subsequent call to nouveau_bo_ref() uses this already freed memory, leading to a use-after-free condition. The fix involves removing the call to nouveau_bo_ref() to prevent accessing freed memory.
How can this vulnerability impact me? :
The use-after-free vulnerability can lead to undefined behavior such as system crashes, memory corruption, or potentially allow an attacker to execute arbitrary code or escalate privileges by exploiting the freed memory access in the nouveau driver.