CyberRota Analysis
AI-GeneratedThe vulnerability affects the Linux kernel's ksmbd component, where improper comparison of ClientGUIDs using strncmp() can lead to incorrect equality evaluations due to the presence of embedded NUL bytes. This flaw could potentially allow unauthorized access or manipulation of SMB3 multichannel sessions, impacting systems relying on secure file sharing. Organizations utilizing Linux servers with SMB3 functionality should prioritize patching this issue to mitigate potential security risks.
Original NVD Description
In the Linux kernel, the following vulnerability has been resolved: ksmbd: use memcmp() to compare ClientGUIDs ClientGUID is a fixed-size binary value and can contain embedded NUL bytes. strncmp() stops comparing at the first NUL byte, so different ClientGUID values can incorrectly be treated as equal. Use memcmp() in SMB3 multichannel session binding and FSCTL_VALIDATE_NEGOTIATE_INFO to compare all SMB2_CLIENT_GUID_SIZE bytes.