CVE-2023-53294
BaseFortify
Publication date: 2025-09-16
Last updated on: 2025-12-02
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 5.15.112 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.29 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.2.16 (exc) |
| linux | linux_kernel | From 6.3 (inc) to 6.3.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 NTFS3 filesystem driver. Specifically, when the Master File Table (MFT) record of an NTFS inode is not a base record, the inode's operation pointer (i_op) can be NULL. If this NULL pointer is dereferenced during a lookup operation (ntfs_lookup), it can cause a kernel crash or general protection fault. The issue occurs because the code does not check if i_op is NULL before calling functions that use it. The fix involves adding a check on inode->i_op before calling d_splice_alias to prevent the null pointer dereference.
How can this vulnerability impact me? :
This vulnerability can cause a system crash or kernel panic due to a null pointer dereference in the NTFS3 filesystem driver. This could lead to denial of service (DoS) on affected systems, potentially causing data loss or system instability when accessing NTFS volumes.