CVE-2026-23075
BaseFortify
Publication date: 2026-02-04
Last updated on: 2026-03-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 5.11 (inc) to 5.15.199 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.162 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.6.122 (exc) |
| linux | linux_kernel | From 6.7 (inc) to 6.12.68 (exc) |
| linux | linux_kernel | From 6.13 (inc) to 6.18.8 (exc) |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 2.6.36 (inc) to 5.10.249 (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
What immediate steps should I take to mitigate this vulnerability?
I don't know
Can you explain this vulnerability to me?
This vulnerability is a memory leak in the Linux kernel's esd_usb driver. Specifically, the issue occurs in the esd_usb_read_bulk_callback() function where USB Request Blocks (URBs) are processed and resubmitted. The problem arises because the USB framework unanchors the URB before the callback is called, causing the URB to no longer be anchored and thus not released properly in esd_usb_close(). This leads to a memory leak.
The fix involves anchoring the URB again within the esd_usb_read_bulk_callback() function to ensure it is properly tracked and released, preventing the memory leak.
How can this vulnerability impact me? :
This memory leak vulnerability can cause the affected system to consume increasing amounts of memory over time when using the esd_usb driver. This can lead to degraded system performance, potential system instability, or crashes if the memory leak is severe and prolonged.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
I don't know