CVE-2023-53401
BaseFortify
Publication date: 2025-09-18
Last updated on: 2025-12-11
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 5.9 (inc) to 6.1.45 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.4.10 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-476 | The product dereferences a pointer that it expects to be valid but is NULL. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a NULL pointer dereference in the Linux kernel's memory management code, specifically in the function obj_stock_flush_required(). It occurs because the stock->cached_objcg pointer can be reset between the time it is checked and when it is dereferenced, leading to a data race condition. This issue was detected by the Kernel Concurrency Sanitizer (KCSAN) and can cause kernel crashes or instability.
How can this vulnerability impact me? :
The vulnerability can cause the Linux kernel to crash or behave unpredictably due to a NULL pointer dereference caused by a data race. This can lead to system instability, potential denial of service, or unexpected behavior in applications relying on the kernel's memory management.
What immediate steps should I take to mitigate this vulnerability?
The vulnerability can be mitigated by applying the fix that uses READ_ONCE()/WRITE_ONCE() for all accesses to stock->cached_objcg in the Linux kernel source code. This involves updating the kernel to a version that includes this fix.