CVE-2023-53537
BaseFortify
Publication date: 2025-10-04
Last updated on: 2026-03-23
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 6.3 (inc) to 6.3.2 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.2.15 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.28 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.111 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.180 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-416 | The product reuses or references memory after it has been freed. At some point afterward, the memory may be allocated again and saved in another pointer, while the original pointer references a location somewhere within the new allocation. Any operations using the original pointer are no longer valid because the memory "belongs" to the code that operates on the new pointer. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a use-after-free issue in the Linux kernel's f2fs filesystem. Specifically, after an error occurs, the function f2fs_submit_merged_ipu_write() attempts to flush a cached IPU bio without properly checking if the bio parameter is valid. This can cause the system to submit a random cached bio that belongs to another IO context, leading to a use-after-free bug which can cause kernel crashes or unpredictable behavior.
How can this vulnerability impact me? :
This vulnerability can cause kernel crashes (kernel BUG) due to use-after-free errors, potentially leading to system instability or denial of service. It may affect the reliability of systems using the f2fs filesystem under certain error conditions.