SEPTEMBER 13, 2026
Live Feed
Back to database
Case File

CVE-2026-89634

CRITICAL · CVSS 9.1 EPSS 0.65%

Source: NVD + CISA KEV + EPSS · Published 2026-09-11 · Last synced 2026-09-13

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's SMB client, specifically in the `symlink_data()` function, where an overflow in the ALIGN() macro can lead to an infinite loop and out-of-bounds read. This flaw allows attackers to potentially access stale data, which could compromise system integrity and confidentiality. Organizations using Linux kernel versions susceptible to this issue should prioritize applying the fix to mitigate risks associated with this vulnerability.

CVE
CVE-2026-89634
Severity
CRITICAL
CVSS
9.1
EPSS
0.65%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: smb: client: fix ALIGN() overflow in symlink_data() error context loop The check added by commit 7d9a7f1f96cd ("smb/client: fix possible infinite loop and oob read in symlink_data()") compared the post-ALIGN length against the remaining buffer, but ALIGN() itself can overflow: for ErrorDataLength near UINT32_MAX (e.g. 0xFFFFFFF9), ALIGN(x, 8) wraps to 0, so the subsequent bounds check passes, and the loop advances by zero bytes leaving 'p' pointing into stale data. Fix by checking the raw ErrorDataLength against the remaining space before applying ALIGN(), then checking again after. Since raw_len is bounded by the buffer, raw_len + 7 cannot overflow, so the second check is an exact post-alignment bounds guard.