AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-68381

CRITICAL · CVSS 9.8 EPSS 0.46%

Source: NVD + CISA KEV + EPSS · Published 2026-08-10 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's ksmbd module, specifically in how it handles connection pointers during asynchronous oplock and lease break notifications. If a connection teardown occurs concurrently with these notifications, it may lead to the use of a freed connection object, potentially resulting in memory corruption or denial of service. Organizations utilizing Linux systems with ksmbd for SMB protocol support should prioritize addressing this issue to mitigate risks associated with connection management and stability.

CVE
CVE-2026-68381
Severity
CRITICAL
CVSS
9.8
EPSS
0.46%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: ksmbd: pin conn during async oplock break notification smb2_oplock_break_noti() and smb2_lease_break_noti() store a ksmbd_conn pointer in an async ksmbd_work and then queue that work on ksmbd-io. The work only increments conn->r_count, which prevents teardown from passing the pending-request wait after the increment, but it does not pin the struct ksmbd_conn object. If connection teardown races with an oplock break notification, the last conn reference can be dropped before the queued worker finishes. The worker then uses the freed conn in ksmbd_conn_write() and ksmbd_conn_r_count_dec(). Take a real conn reference when publishing the conn pointer to the async work item, and drop it after the notification work has decremented r_count. Apply the same lifetime rule to lease break notification, which uses the same work->conn pattern.