CVE-2023-53421
BaseFortify
Publication date: 2025-09-18
Last updated on: 2026-04-06
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.5 (inc) to 6.3.13 (exc) |
| linux | linux_kernel | From 6.4 (inc) to 6.4.4 (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 occurs in the Linux kernel's blk-cgroup subsystem. When allocating a blkcg_gq structure, two fields within the associated blkg_iostat_set (blkg and sync) are not properly re-initialized after being cleared. This improper re-initialization can lead to a kernel panic caused by a NULL pointer access of the blkg pointer. The sync field's missing initialization is less severe but can cause issues in debug kernels due to missing lockdep initialization. The issue is fixed by ensuring these fields are re-initialized after memory clearing.
How can this vulnerability impact me? :
This vulnerability can cause a kernel panic in the Linux system, leading to system crashes or instability. This can disrupt normal operations, potentially causing downtime or data loss depending on the environment where the kernel is running.
What immediate steps should I take to mitigate this vulnerability?
To mitigate this vulnerability, update your Linux kernel to a version that includes the fix for the blk-cgroup issue where blkg_iostat_set fields are properly re-initialized after clearing. This will prevent kernel panic due to NULL pointer access. Avoid running debug kernels that might expose additional issues related to missing lockdep initialization until patched.