CVE-2023-53749
BaseFortify
Publication date: 2025-12-08
Last updated on: 2025-12-08
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is in the Linux kernel's x86 architecture code related to how exceptions are handled during user memory clearing operations. Specifically, the exception table annotation for the 'rep movsb' instruction in the clear_user_rep_good() function was incorrect. Instead of pointing to the actual instruction that accessed user memory, it pointed to a preceding register move instruction. This caused the kernel's exception handler to fail to properly identify and handle page faults during user memory access, leading to a kernel oops (crash) instead of a controlled error return (-EFAULT). The vulnerability was fixed by correcting the exception table annotation placement.
How can this vulnerability impact me? :
If this vulnerability is triggered, it can cause the Linux kernel to crash (kernel oops) when handling page faults during user memory clearing operations. This can lead to system instability or downtime, as the kernel fails to handle exceptions properly and instead crashes. It may appear as a filesystem bug but is actually due to incorrect exception handling in the kernel code.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring for kernel oops reports related to page faults during user memory clearing operations. Specifically, look for messages similar to: BUG: unable to handle page fault for address: ... #PF: supervisor write access in kernel mode RIP: clear_user_rep_good+0x1c/0x30 ... You can check the kernel logs using commands like: - dmesg | grep -i 'clear_user_rep_good' - journalctl -k | grep -i 'page fault' These commands help identify if the kernel is encountering the described exception handling issue.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation involves updating the Linux kernel to a version where this issue is fixed. The fix corrects the exception table annotation for the 'rep movsb' instruction in clear_user_rep_good(), preventing kernel oops from occurring. If updating is not immediately possible, monitoring for kernel oops and avoiding workloads that trigger user memory clearing exceptions may reduce impact. Ultimately, applying the patch or upgrading to a kernel including the fix is necessary.