CVE-2026-45935
Severity CVSS v4.0:
Pending analysis
Type:
CWE-125
Out-of-bounds Read
Publication date:
27/05/2026
Last modified:
24/06/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
fs/ntfs3: Fix slab-out-of-bounds read in DeleteIndexEntryRoot<br />
<br />
In the &#39;DeleteIndexEntryRoot&#39; case of the &#39;do_action&#39; function, the<br />
entry size (&#39;esize&#39;) is retrieved from the log record without adequate<br />
bounds checking.<br />
<br />
Specifically, the code calculates the end of the entry (&#39;e2&#39;) using:<br />
e2 = Add2Ptr(e1, esize);<br />
<br />
It then calculates the size for memmove using &#39;PtrOffset(e2, ...)&#39;,<br />
which subtracts the end pointer from the buffer limit. If &#39;esize&#39; is<br />
maliciously large, &#39;e2&#39; exceeds the used buffer size. This results in<br />
a negative offset which, when cast to size_t for memmove, interprets<br />
as a massive unsigned integer, leading to a heap buffer overflow.<br />
<br />
This commit adds a check to ensure that the entry size (&#39;esize&#39;) strictly<br />
fits within the remaining used space of the index header before performing<br />
memory operations.
Impact
Base Score 3.x
7.80
Severity 3.x
HIGH
Vulnerable products and versions
| CPE | From | Up to |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.15 (including) | 5.15.202 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (including) | 6.1.165 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (including) | 6.6.128 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.7 (including) | 6.12.75 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.18.14 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.19 (including) | 6.19.4 (excluding) |
To consult the complete list of CPE names with products and versions, see this page
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/36c03f7f177b34d51f1cf1d2304b1074607bf4b0
- https://git.kernel.org/stable/c/78942172d5bff4d4afed8674abc09cc560ce44a0
- https://git.kernel.org/stable/c/a584b9d1059b29e97e17c919274e9adfb846f2a0
- https://git.kernel.org/stable/c/b271c9cb85927210b1b799e55ee7f702d12b4336
- https://git.kernel.org/stable/c/b2bc7c44ed1779fc9eaab9a186db0f0d01439622
- https://git.kernel.org/stable/c/c065541b71b79874c83d418a9acd18ad5826339b
- https://git.kernel.org/stable/c/f3b437a4c3e022a1449658ae9f3dd34859894513



