CVE-2026-64296
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
25/07/2026
Last modified:
17/08/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
exfat: bound uniname advance in exfat_find_dir_entry()<br />
<br />
In exfat_find_dir_entry(), each TYPE_EXTEND (file name) entry advances the<br />
output pointer by a fixed amount while the loop guard only tracks the<br />
accumulated name length:<br />
<br />
if (++order == 2)<br />
uniname = p_uniname->name;<br />
else<br />
uniname += EXFAT_FILE_NAME_LEN;<br />
len = exfat_extract_uni_name(ep, entry_uniname);<br />
name_len += len;<br />
unichar = *(uniname+len);<br />
*(uniname+len) = 0x0;<br />
<br />
uniname grows by EXFAT_FILE_NAME_LEN (15) per name entry, but name_len<br />
grows only by the actual extracted length, which is shorter when a name<br />
fragment contains an early NUL. The only guard is<br />
`name_len >= MAX_NAME_LENGTH`, so a crafted directory with many short<br />
name fragments lets uniname run far past the<br />
p_uniname->name[MAX_NAME_LENGTH + 3] buffer while name_len stays small,<br />
causing an out-of-bounds read and write at *(uniname+len).<br />
<br />
The sibling extractor exfat_get_uniname_from_ext_entry() already stops<br />
on a short fragment (the lockstep `len != EXFAT_FILE_NAME_LEN` guard<br />
added in commit d42334578eba ("exfat: check if filename entries exceeds<br />
max filename length")); exfat_find_dir_entry() never got the<br />
equivalent. Track the per-entry write offset as a count and reject a<br />
fragment once the offset, or the offset plus the extracted length, would<br />
exceed MAX_NAME_LENGTH, before forming the output pointer.
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.7 (including) | 5.10.261 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.11 (including) | 5.15.212 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (including) | 6.1.178 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (including) | 6.6.145 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.7 (including) | 6.12.96 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (including) | 6.18.39 (excluding) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.19 (including) | 7.1.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/33c0b96d7e1672be1de0053786637ea46fb81507
- https://git.kernel.org/stable/c/3a1230e7b043c62737b05a3e9275ca83a43ad20a
- https://git.kernel.org/stable/c/727bf7783a2936ffd55c628dddfd69343e511dcf
- https://git.kernel.org/stable/c/72a2589d82eb001c94b74bcfe6f9a599bd9bef60
- https://git.kernel.org/stable/c/c8e041c68c0bbb73aa62371ee63947bb6949d8b2
- https://git.kernel.org/stable/c/ce4736c1e6c4cfbf1ac409a8c328a0b69546c9a0
- https://git.kernel.org/stable/c/cf85180b8a015029ee147694eaf4e0b3537e9432
- https://git.kernel.org/stable/c/fae76a94b35ee8c0e2eb6f64caca01d75c6d34e4



