CVE-2023-53311
BaseFortify
Publication date: 2025-09-16
Last updated on: 2025-12-01
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 4.0 (inc) to 4.14.323 (exc) |
| linux | linux_kernel | From 4.15 (inc) to 4.19.292 (exc) |
| linux | linux_kernel | From 4.20 (inc) to 5.4.254 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.191 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.127 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.46 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.4.11 (exc) |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
| linux | linux_kernel | 6.5 |
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 (UAF) bug in the Linux kernel's nilfs2 filesystem. It occurs during the unmount process when the nilfs_root structure is accessed after it has been freed. Specifically, after detaching the log writer, certain inode operations can cause the system to reference the freed nilfs_root structure, leading to potential memory corruption or crashes. The issue arises from the interaction between inode dirtying functions and the lifecycle of nilfs_root during unmounting. It was fixed by adding a purging flag to prevent operations on the freed structure.
How can this vulnerability impact me? :
This vulnerability can lead to use-after-free memory errors in the Linux kernel when using the nilfs2 filesystem. Such errors can cause system instability, crashes, or potentially allow attackers to execute arbitrary code or escalate privileges if exploited. Therefore, it can impact system reliability and security.