CVE-2023-53366
BaseFortify
Publication date: 2025-09-17
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.15 (inc) to 6.1.16 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.2.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 in the Linux kernel involves improper handling of a NULL pointer (bio->bi_bdev) during polled IO operations. Specifically, when two tasks share a poll queue and perform polled IO, one task can complete IO for another, causing a bio structure to be reused prematurely. This can lead to a crash because the kernel does not properly check if bio->bi_bdev is NULL before accessing it.
How can this vulnerability impact me? :
This vulnerability can cause system crashes (kernel oops) when using polled IO, potentially leading to denial of service or instability in applications relying on polled IO in the Linux kernel.