CVE-2023-53629
BaseFortify
Publication date: 2025-10-07
Last updated on: 2026-02-03
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.2 (inc) to 6.2.3 (inc) |
| linux | kernel | 6.1.0-rc4 |
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 Distributed Lock Manager (DLM) component, specifically in the midcomms commit handling code. It occurs when processing DLM messages in a softirq context, leading to a situation where memory is accessed after it has been freed, which can cause system instability or crashes.
How can this vulnerability impact me? :
The use-after-free vulnerability can lead to kernel crashes or instability, potentially causing denial of service on affected systems. It may also be exploited to execute arbitrary code or escalate privileges, depending on the environment and exploitability.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring the kernel logs for KASAN (Kernel Address Sanitizer) use-after-free warnings related to dlm_midcomms_commit_mhandle. You can check the kernel log using commands like 'dmesg | grep KASAN' or 'journalctl -k | grep KASAN' to look for relevant error messages indicating the use-after-free issue.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation involves updating the Linux kernel to a version where this use-after-free vulnerability in the dlm midcomms commit has been fixed. Until then, monitoring for KASAN warnings and avoiding workloads that trigger the dlm lock torture tests may reduce exposure.