CVE-2023-53596
BaseFortify
Publication date: 2025-10-04
Last updated on: 2026-03-21
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 6.5 (inc) to 6.5.3 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-415 | The product calls free() twice on the same memory address. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel involves improper freeing of device-managed resources when unregistering devices that do not have a bus or driver. Specifically, the function devres_release_all() was only called if the device had a bus and had been probed, which caused resources to not be released for bus-less or driver-less devices. This could lead to resource leaks, for example in the DRM framework. The fix ensures devres_release_all() is called in the device_del() function to properly release resources even if the device lacks a bus or driver.
How can this vulnerability impact me? :
This vulnerability can cause resource leaks in the Linux kernel when devices without a bus or driver are unregistered. Such leaks may lead to increased memory usage and potentially degrade system stability or performance over time, especially in subsystems like DRM that use bus-less or driver-less devices.