CVE-2026-53383 Details
Description
In the Linux kernel, the following vulnerability has been resolved: ksmbd: reject non-VALID session in compound request branch smb2_check_user_session() takes a shortcut for any operation that is not the first in a COMPOUND request: it reuses work->sess (the session bound by the first operation) and validates only the SessionId, then returns "valid". It never re-checks work->sess->state == SMB2_SESSION_VALID, and a SessionId of 0xFFFFFFFFFFFFFFFF (ULLONG_MAX, the MS-SMB2 related-operation value) skips even the id comparison. The standalone path (ksmbd_session_lookup_all() plus the SESSION_SETUP state machine) does enforce the VALID state; the compound branch bypasses all of it. A SESSION_SETUP carrying only an NTLM Type-1 (NtLmNegotiate) blob publishes a fresh SMB2_SESSION_IN_PROGRESS session whose sess->user is still NULL (->user is assigned later, by ntlm_authenticate()). Used as operation 1 of a COMPOUND with operation 2 = TREE_CONNECT (related, SessionId=ULLONG_MAX, \\host\IPC$), the tree-connect then runs on that IN_PROGRESS session and reaches ksmbd_ipc_tree_connect_request(), which dereferences user_name(sess->user) with sess->user == NULL (transport_ipc.c:687/701/704) -> remote NULL-pointer dereference and a kernel Oops that wedges the ksmbd worker for all clients. Reject any non-first compound operation that lands on a session which is not SMB2_SESSION_VALID, mirroring the validity the standalone lookup path enforces. SESSION_SETUP itself legitimately runs on an IN_PROGRESS session, but it is never carried as a non-first compound operation, so multi-leg authentication is unaffected by this check.
A vulnerability in the Linux kernel's ksmbd component allows for improper session validation in compound requests. The issue arises because the function smb2_check_user_session() does not correctly verify the session state for non-first operations in a COMPOUND request. Instead, it reuses the session from the first operation, validates only the SessionId, and returns 'valid' without checking if the session is actually valid. This oversight can be exploited by initiating a SESSION_SETUP with an NTLM Type-1 blob, which creates a new session in progress. When this session is used in a compound request with a TREE_CONNECT operation, it leads to a NULL-pointer dereference and a kernel Oops, causing a denial of service by disrupting the ksmbd worker for all clients.
The vulnerability has been addressed in the Linux kernel. Users should upgrade to the latest version where this issue has been fixed.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/06e1f05a1dbe8bbd054c0927b17fc0a61cc8bef7 | kernel.org | Patch |
| https://git.kernel.org/stable/c/25ff12b82a376ff5c4583102a63d2456a6b9ebb9 | kernel.org | Patch |
| https://git.kernel.org/stable/c/5f983b864d3d473ac533b2f4f44a1bbe5dcbccf4 | kernel.org | Patch |
| https://git.kernel.org/stable/c/609ca17d869d04ba249e32cdcbf13c0b1c66f43c | kernel.org | Patch |
| https://git.kernel.org/stable/c/7cad3ceaf679c55bc9946685dacafce78ce6b51a | kernel.org | Patch |
| https://git.kernel.org/stable/c/8f0302fb691537d33ec8f668565257ea9d340ffe | kernel.org | Patch |
| https://git.kernel.org/stable/c/d2bbbb6c55812220fee5d801c275cc267ea3cbeb | kernel.org | Patch |
| https://git.kernel.org/stable/c/fc578523a72cb8b329d32070b95898e81613cc3f | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-476 | NULL Pointer Dereference | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 5.15.121, < 5.15.211 >= 6.1.36, < 6.1.177 >= 6.3.10, < 6.4 >= 6.4.1, < 6.6.144 >= 6.7, < 6.12.95 >= 6.13, < 6.18.37 >= 6.19, < 7.0.14 >= 7.1, < 7.1.2 6.4 - |
CPE
Remediation
| |
Change History
4 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Aug 17, 2026 | CVE Modified | kernel.org |
| Jul 29, 2026 | Initial Analysis | [email protected] |
| Jul 20, 2026 | CVE Modified | kernel.org |
| Jul 19, 2026 | New CVE Received | kernel.org |