CVE-2022-50542
BaseFortify
Publication date: 2025-10-07
Last updated on: 2026-02-26
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.10 (inc) to 4.14.303 (inc) |
| linux | kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-416 | The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory "belongs" to the code that operates on the new pointer. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a use-after-free issue in the Linux kernel's si470x media driver. Specifically, the function si470x_int_in_callback() is called on a USB request block (urb) that has already been freed. The problem arises because when si470x_start_usb() fails after submitting the urb, the driver frees the si470x_device object but does not kill the urb, leading to the callback being invoked on freed memory. This can cause undefined behavior or crashes.
How can this vulnerability impact me? :
This vulnerability can lead to use-after-free conditions, which may cause system instability, crashes, or potentially allow an attacker to execute arbitrary code or cause denial of service by exploiting the freed memory being accessed.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update the Linux kernel to a version that includes the patch fixing the use-after-free in si470x_int_in_callback(). The patch ensures that urb is properly killed when si470x_start_usb() fails, preventing use-after-free conditions. Until the update is applied, avoid using the affected si470x USB driver functionality to reduce risk.