0.0
NA
CVE-2026-68381
ksmbd: pin conn during async oplock break notification
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.

INFO

Published Date :

Aug. 10, 2026, 1:20 p.m.

Last Modified :

Aug. 10, 2026, 1:20 p.m.

Remotely Exploit :

No

Source :

416baaa9-dc9f-4396-8d5f-8c081fb06d67
Affected Products

The following products are affected by CVE-2026-68381 vulnerability. Even if cvefeed.io is aware of the exact versions of the products that are affected, the information is not represented in the table below.

No affected product recoded yet

Solution
Pin the connection object during asynchronous oplock break notifications to prevent use-after-free.
  • Take a real connection reference for async work.
  • Drop the reference after the notification work completes.
  • Apply the same rule to lease break notifications.
CWE - Common Weakness Enumeration

While CVE identifies specific instances of vulnerabilities, CWE categorizes the common flaws or weaknesses that can lead to vulnerabilities. CVE-2026-68381 is associated with the following CWEs:

Common Attack Pattern Enumeration and Classification (CAPEC)

Common Attack Pattern Enumeration and Classification (CAPEC) stores attack patterns, which are descriptions of the common attributes and approaches employed by adversaries to exploit the CVE-2026-68381 weaknesses.

We scan GitHub repositories to detect new proof-of-concept exploits. Following list is a collection of public exploits and proof-of-concepts, which have been published on GitHub (sorted by the most recently updated).

Results are limited to the first 15 repositories due to potential performance issues.

The following list is the news that have been mention CVE-2026-68381 vulnerability anywhere in the article.

The following table lists the changes that have been made to the CVE-2026-68381 vulnerability over time.

Vulnerability history details can be useful for understanding the evolution of a vulnerability, and for identifying the most recent changes that may impact the vulnerability's severity, exploitability, or other characteristics.

  • New CVE Received by 416baaa9-dc9f-4396-8d5f-8c081fb06d67

    Aug. 10, 2026

    Action Type Old Value New Value
    Added Affected [{'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '09aeab68033161cb54f194da93e51a11aee6144b', 'lessThan': '0f72fc9659d7f585460d43c158055df5afdcffb6', 'versionType': 'git'}, {'status': 'affected', 'version': 'a4261bbc33fbf99b99c80aa3a2c5097611802980', 'lessThan': '793e1c7041b93af96ff87e678329bc16aee7ba88', 'versionType': 'git'}, {'status': 'affected', 'version': '3aa660c059240e0c795217182cf7df32909dd917', 'lessThan': '6ecb252efa0b413ac3d9979fb4eec247f8fc1258', 'versionType': 'git'}, {'status': 'affected', 'version': '3aa660c059240e0c795217182cf7df32909dd917', 'lessThan': '14062c74e5b25c27edcff7a2fe0dc701c930b372', 'versionType': 'git'}, {'status': 'affected', 'version': '3aa660c059240e0c795217182cf7df32909dd917', 'lessThan': 'aa5d8f3f96aa11a4a54ce993c11ce8af11c546f9', 'versionType': 'git'}, {'status': 'affected', 'version': 'f17d1c63a76b0fe8e9c78023a86507a3a6d62cfa', 'versionType': 'git'}, {'status': 'affected', 'version': '6.6.84', 'lessThan': '6.6.148', 'versionType': 'semver'}, {'status': 'affected', 'version': '6.12.20', 'lessThan': '6.12.101', 'versionType': 'semver'}, {'status': 'affected', 'version': '6.13.8', 'lessThan': '6.14', 'versionType': 'semver'}], 'programFiles': ['fs/smb/server/oplock.c'], 'defaultStatus': 'unaffected'}, {'repo': 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git', 'vendor': 'Linux', 'product': 'Linux', 'versions': [{'status': 'affected', 'version': '6.14'}, {'status': 'unaffected', 'version': '0', 'lessThan': '6.14', 'versionType': 'semver'}, {'status': 'unaffected', 'version': '6.6.148', 'versionType': 'semver', 'lessThanOrEqual': '6.6.*'}, {'status': 'unaffected', 'version': '6.12.101', 'versionType': 'semver', 'lessThanOrEqual': '6.12.*'}, {'status': 'unaffected', 'version': '6.18.42', 'versionType': 'semver', 'lessThanOrEqual': '6.18.*'}, {'status': 'unaffected', 'version': '7.1.6', 'versionType': 'semver', 'lessThanOrEqual': '7.1.*'}, {'status': 'unaffected', 'version': '7.2-rc4', 'versionType': 'original_commit_for_fix', 'lessThanOrEqual': '*'}], 'programFiles': ['fs/smb/server/oplock.c'], 'defaultStatus': 'affected'}]
    Added 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.
    Added Reference https://git.kernel.org/stable/c/0f72fc9659d7f585460d43c158055df5afdcffb6
    Added Reference https://git.kernel.org/stable/c/14062c74e5b25c27edcff7a2fe0dc701c930b372
    Added Reference https://git.kernel.org/stable/c/6ecb252efa0b413ac3d9979fb4eec247f8fc1258
    Added Reference https://git.kernel.org/stable/c/793e1c7041b93af96ff87e678329bc16aee7ba88
    Added Reference https://git.kernel.org/stable/c/aa5d8f3f96aa11a4a54ce993c11ce8af11c546f9
EPSS is a daily estimate of the probability of exploitation activity being observed over the next 30 days. Following chart shows the EPSS score history of the vulnerability.