Lucene search
+L

2318 matches found

OSV
OSV
added 2026/01/13 4:15 p.m.8 views

UBUNTU-CVE-2025-68786

In the Linux kernel, the following vulnerability has been resolved: ksmbd: skip lock-range check on equal size to avoid size==0 underflow When size equals the current isize including 0, the code used to call checklockrangefilp, isize, size - 1, WRITE, which computes size - 1 and can underflow for...

5.7AI score0.00197EPSS
SaveExploits0References28
OSV
OSV
added 2026/01/13 3:29 p.m.9 views

CVE-2025-68817 ksmbd: fix use-after-free in ksmbd_tree_connect_put under concurrency

In the Linux kernel, the following vulnerability has been resolved: ksmbd: fix use-after-free in ksmbdtreeconnectput under concurrency Under high concurrency, A tree-connection object tcon is freed on a disconnect path while another path still holds a reference and later executes put/write on it...

9.8CVSS6.4AI score
SaveExploits0References9
CVE
CVE
added 2026/01/13 3:29 p.m.46 views

CVE-2025-68817

CVE-2025-68817 affects the Linux kernel ksmbd component. A use-after-free on a tree-connection object (tcon) can occur under high concurrency when a disconnect path frees the tcon while another path still holds a reference and later calls *_put()/write. The issue is addressed by a kernel fix in k...

9.8CVSS6.2AI score0.00454EPSS
SaveExploits0References6Affected Software1
ATTACKERKB
ATTACKERKB
added 2026/01/13 3:29 p.m.6 views

CVE-2025-68817

In the Linux kernel, the following vulnerability has been resolved: ksmbd: fix use-after-free in ksmbdtreeconnectput under concurrency Under high concurrency, A tree-connection object tcon is freed on a disconnect path while another path still holds a reference and later executes put/write on it...

5.2AI score0.00454EPSS
SaveExploits0References7Affected Software1
Debian CVE
Debian CVE
added 2026/01/13 3:29 p.m.12 views

CVE-2025-68817

In the Linux kernel, the following vulnerability has been resolved: ksmbd: fix use-after-free in ksmbdtreeconnectput under concurrency Under high concurrency, A tree-connection object tcon is freed on a disconnect path while another path still holds a reference and later executes put/write on it...

9.8CVSS6.2AI score0.00454EPSS
SaveExploits0
Cvelist
Cvelist
added 2026/01/13 3:29 p.m.32 views

CVE-2025-68817 ksmbd: fix use-after-free in ksmbd_tree_connect_put under concurrency

In the Linux kernel, the following vulnerability has been resolved: ksmbd: fix use-after-free in ksmbdtreeconnectput under concurrency Under high concurrency, A tree-connection object tcon is freed on a disconnect path while another path still holds a reference and later executes put/write on it...

9.8CVSS0.00454EPSS
SaveExploits0References6
CVE
CVE
added 2026/01/13 3:29 p.m.57 views

CVE-2025-68809

CVE-2025-68809 — ksmbd race on m_flags in vfs_cache (Linux kernel) A data race was present in ksmbd_inode->m_flags (delete-on-close and pending-delete flags) due to inconsistent locking in vfs_cache.c. Some paths read/modify m_flags under ci->m_lock, others did not, risking lost or inconsis...

9.1CVSS6AI score0.00516EPSS
SaveExploits0References4
Debian CVE
Debian CVE
added 2026/01/13 3:29 p.m.24 views

CVE-2025-68809

In the Linux kernel, the following vulnerability has been resolved: ksmbd: vfs: fix race on mflags in vfscache ksmbd maintains delete-on-close and pending-delete state in ksmbdinode-mflags. In vfscache.c this field is accessed under inconsistent locking: some paths read and modify mflags under...

9.1CVSS5.2AI score0.00516EPSS
SaveExploits0
OSV
OSV
added 2026/01/13 3:29 p.m.10 views

CVE-2025-68809 ksmbd: vfs: fix race on m_flags in vfs_cache

In the Linux kernel, the following vulnerability has been resolved: ksmbd: vfs: fix race on mflags in vfscache ksmbd maintains delete-on-close and pending-delete state in ksmbdinode-mflags. In vfscache.c this field is accessed under inconsistent locking: some paths read and modify mflags under...

9.1CVSS6.2AI score
SaveExploits0References7
Cvelist
Cvelist
added 2026/01/13 3:29 p.m.39 views

CVE-2025-68809 ksmbd: vfs: fix race on m_flags in vfs_cache

In the Linux kernel, the following vulnerability has been resolved: ksmbd: vfs: fix race on mflags in vfscache ksmbd maintains delete-on-close and pending-delete state in ksmbdinode-mflags. In vfscache.c this field is accessed under inconsistent locking: some paths read and modify mflags under...

9.1CVSS0.00516EPSS
SaveExploits0References4
CVE
CVE
added 2026/01/13 3:29 p.m.40 views

CVE-2025-68806

In CVE-2025-68806, the Linux kernel’s ksmbd SMB server code suffers a buffer-validation issue in smb2_set_ea.c, where EA Name null-terminator handling was ignored in the EaNameLength calculation. The root cause: buffer size checks did not account for the terminating character (+1), enabling impro...

7.5CVSS6.2AI score0.00437EPSS
SaveExploits0References5
Cvelist
Cvelist
added 2026/01/13 3:29 p.m.34 views

CVE-2025-68806 ksmbd: fix buffer validation by including null terminator size in EA length

In the Linux kernel, the following vulnerability has been resolved: ksmbd: fix buffer validation by including null terminator size in EA length The smb2setea function, which handles Extended Attributes EA, was performing buffer validation checks that incorrectly omitted the size of the null...

7.5CVSS0.00437EPSS
SaveExploits0References5
CVE
CVE
added 2026/01/13 3:28 p.m.44 views

CVE-2025-68786

CVE-2025-68786 affects the Linux kernel ksmbd code path. When i_size equals the requested size (including 0), the prior check_lock_range call used size-1 and could underflow, which is mitigated by skipping the equal-size case. The issue is resolved in upstream kernel 6.6.120, and Mageia advisorie...

6.4AI score0.00197EPSS
SaveExploits0References5
OSV
OSV
added 2026/01/13 3:28 p.m.7 views

CVE-2025-68786 ksmbd: skip lock-range check on equal size to avoid size==0 underflow

In the Linux kernel, the following vulnerability has been resolved: ksmbd: skip lock-range check on equal size to avoid size==0 underflow When size equals the current isize including 0, the code used to call checklockrangefilp, isize, size - 1, WRITE, which computes size - 1 and can underflow for...

6.6AI score
SaveExploits0References8
Cvelist
Cvelist
added 2026/01/13 3:28 p.m.32 views

CVE-2025-68786 ksmbd: skip lock-range check on equal size to avoid size==0 underflow

In the Linux kernel, the following vulnerability has been resolved: ksmbd: skip lock-range check on equal size to avoid size==0 underflow When size equals the current isize including 0, the code used to call checklockrangefilp, isize, size - 1, WRITE, which computes size - 1 and can underflow for...

0.00197EPSS
SaveExploits0References5
Debian CVE
Debian CVE
added 2026/01/13 3:28 p.m.14 views

CVE-2025-68786

In the Linux kernel, the following vulnerability has been resolved: ksmbd: skip lock-range check on equal size to avoid size==0 underflow When size equals the current isize including 0, the code used to call checklockrangefilp, isize, size - 1, WRITE, which computes size - 1 and can underflow for...

5.2AI score0.00197EPSS
SaveExploits0
AstraLinux
AstraLinux
added 2026/01/13 2:01 p.m.10 views

Astra Linux – Vulnerability found in Linux 6.1, Linux 6.12

In the Linux kernel, the following vulnerability has been resolved: ksmbd: transportipc: Validate the payload size before reading the handle. The handleresponse function dereferences the payload as a 4-byte handle without verifying that the declared payload size is at least 4 bytes. A malformed o...

7.1CVSS6AI score0.0014EPSS
SaveExploits0References3
Tenable Nessus
Tenable Nessus
added 2026/01/13 12:00 a.m.2 views

Linux Distros Unpatched Vulnerability : CVE-2025-68817

The Linux/Unix host has one or more packages installed that are impacted by a vulnerability without a vendor supplied patch available. - In the Linux kernel, the following vulnerability has been resolved: ksmbd: fix use-after-free in ksmbdtreeconnectput under concurrency Under high concurrency, A...

9.8CVSS6.3AI score0.00454EPSS
SaveExploits0References2
Tenable Nessus
Tenable Nessus
added 2026/01/13 12:00 a.m.4 views

Linux Distros Unpatched Vulnerability : CVE-2025-68806

The Linux/Unix host has one or more packages installed that are impacted by a vulnerability without a vendor supplied patch available. - ksmbd: fix buffer validation by including null terminator size in EA length The smb2setea function, which handles Extended Attributes EA, was performing buffer...

7.5CVSS6.1AI score0.00437EPSS
SaveExploits0References2
Tenable Nessus
Tenable Nessus
added 2026/01/13 12:00 a.m.9 views

Linux Distros Unpatched Vulnerability : CVE-2025-68786

The Linux/Unix host has one or more packages installed that are impacted by a vulnerability without a vendor supplied patch available. - ksmbd: skip lock-range check on equal size to avoid size==0 underflow When size equals the current isize including 0, the code used to call checklockrangefilp,...

6AI score0.00197EPSS
SaveExploits0References2
Rows per page
Query Builder