CVE-2023-53479
BaseFortify
Publication date: 2025-10-01
Last updated on: 2026-01-20
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.0 (inc) to 6.1.43 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.4.8 (exc) |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
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 bug in the Linux kernel's CXL driver, specifically in the cxl_parse_cfmws() function. It occurs when the function releases a device structure (cxld) using put_device(), but then later accesses that released memory, leading to a potential memory safety issue detected by KASAN and KFENCE.
How can this vulnerability impact me? :
The use-after-free vulnerability can lead to undefined behavior such as system crashes or potential escalation of privileges if exploited, as it involves accessing memory after it has been freed. This can compromise system stability and security.