CVE-2023-53724
BaseFortify
Publication date: 2025-10-22
Last updated on: 2025-10-22
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
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 potential memory leak in the Linux kernel's pcf50633-adc driver. Specifically, in the function pcf50633_adc_async_read(), a request object ('req') is allocated, but if the function adc_enqueue_request() fails to insert this request into the queue, the allocated memory is not freed, leading to a memory leak. The fix involves checking the return value of adc_enqueue_request() and freeing the allocated memory if the insertion fails.
How can this vulnerability impact me? :
This vulnerability can lead to a memory leak in the Linux kernel, which over time could cause increased memory usage and potentially degrade system performance or stability. In systems where the pcf50633-adc driver is used, repeated failures to enqueue requests could exhaust available memory resources, possibly leading to crashes or other unexpected behavior.