CVE-2023-53536
BaseFortify
Publication date: 2025-10-04
Last updated on: 2026-03-25
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.3 (inc) to 6.3.2 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.2.15 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.28 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.111 (exc) |
| linux | linux_kernel | From 5.8 (inc) to 5.10.180 (exc) |
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 blk-crypto subsystem. Specifically, the function blk_crypto_evict_key() may fail to properly unlink a key from keyslot management structures if it detects the key is still in use or if keyslot eviction fails. Despite this failure, the caller proceeds to free the key anyway, leading to a use-after-free condition in blk_crypto_reprogram_all_keys(). The fix ensures that the key is unlinked even if eviction fails, preventing this unsafe state.
How can this vulnerability impact me? :
This vulnerability can lead to a use-after-free condition in the Linux kernel's block crypto subsystem, which may cause system instability, crashes, or potentially allow an attacker to execute arbitrary code or escalate privileges if they can trigger the bug. It affects the reliability and security of encrypted block device operations.