CVE-2022-50024
BaseFortify
Publication date: 2025-06-18
Last updated on: 2025-11-13
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) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-476 | The product dereferences a pointer that it expects to be valid but is NULL. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability occurs in the Linux kernel's dmaengine component, specifically in the dw-axi-dmac driver. During debugging, the function axi_chan_dump_lli() is called with a NULL LLI (Linked List Item) pointer, which causes a kernel OOPS (crash) because the code tries to access fields from a NULL pointer. The fix is to detect the NULL LLI and print a message instead of causing a crash.
How can this vulnerability impact me? :
This vulnerability can cause the Linux kernel to crash (OOPS) during debugging when a NULL LLI pointer is accessed. This could lead to system instability or downtime if the affected code path is triggered.