CVE-2023-53210
BaseFortify
Publication date: 2025-09-15
Last updated on: 2025-12-04
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.18 (inc) to 6.1.53 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.4.16 (exc) |
| linux | linux_kernel | From 6.5 (inc) to 6.5.3 (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 md/raid5-cache component. It occurs in the function r5l_flush_stripe_to_raid() when it submits a flush I/O operation. The issue arises because the function checks if a list called 'flushing_ios' is empty before submitting a flush bio, but another function, r5l_log_flush_endio(), clears the list and the bio in the wrong order. This leads to a null pointer dereference when the bio is accessed after being cleared. The fix involves clearing the bio before clearing the list to prevent this error.
How can this vulnerability impact me? :
This vulnerability can cause a null pointer dereference in the Linux kernel, which may lead to a kernel crash or system instability. Such crashes can result in denial of service, potentially affecting system availability and reliability.