Lucene search
+L

246231 matches found

EUVD
EUVD
added 2 days ago6 views

EUVD-2026-59732

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: lock sk in isosockgetname Accessing isopisk-conn requires locksock, which is not held here. Fix by adding the lock/release...

5.3AI score0.00166EPSS
SaveExploits0References3
ATTACKERKB
ATTACKERKB
added 2 days ago8 views

CVE-2026-74539

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: lock sk in isosockgetname Accessing isopisk-conn requires locksock, which is not held here. Fix by adding the lock/release...

5.1AI score0.00166EPSS
SaveExploits0References4Affected Software1
OSV
OSV
added 2 days ago2 views

CVE-2026-74536 Bluetooth: ISO: fix leaking sk after socket release

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix leaking sk after socket release isosockkill tests !sockflagsk, SOCKZAPPED || sk-sksocket || sockflagsk, SOCKDEAD for early return, but this is always true since sockorphansk sets SOCKDEAD, so the sk reference...

5.6AI score
SaveExploits0References7
ATTACKERKB
ATTACKERKB
added 2 days ago8 views

CVE-2026-74537

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: hold sk properly in isoconnready sk deref in isoconnready must be done either under conn-lock, or holding a refcount, to avoid concurrent close. conn-sk is currently accessed without either: Task 1 Task 2...

5.2AI score0.00166EPSS
SaveExploits0References4Affected Software1
CVE
CVE
added 2 days ago13 views

CVE-2026-74536

In CVE-2026-74536, the Linux kernel Bluetooth ISO stack suffers a leak: iso_sock_kill() can leak the sk reference after socket release or when __iso_sock_close() does not set SOCK_ZAPPED, because sock_orphan(sk) marks SOCK_DEAD. The fix replaces SOCK_DEAD with a dedicated BT_SK_KILLED flag and ad...

5.4AI score0.00168EPSS
SaveExploits0References4
EUVD
EUVD
added 2 days ago4 views

EUVD-2026-59729

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix leaking sk after socket release isosockkill tests !sockflagsk, SOCKZAPPED || sk-sksocket || sockflagsk, SOCKDEAD for early return, but this is always true since sockorphansk sets SOCKDEAD, so the sk reference...

5.4AI score0.00168EPSS
SaveExploits0References4
CVE
CVE
added 2 days ago17 views

CVE-2026-74537

The CVE-2026-74537 entry concerns the Linux kernel Bluetooth ISO path. A use-after-free could occur when dereferencing conn->sk in iso_conn_ready because the socket was accessed without holding a lock or a refcount. The fix adds a socket refcount in iso_conn_ready and rechecks socket validity ...

8.8CVSS5.3AI score0.00166EPSS
SaveExploits0References3
OSV
OSV
added 2 days ago4 views

CVE-2026-74537 Bluetooth: ISO: hold sk properly in iso_conn_ready

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: hold sk properly in isoconnready sk deref in isoconnready must be done either under conn-lock, or holding a refcount, to avoid concurrent close. conn-sk is currently accessed without either: Task 1 Task 2...

5.5AI score
SaveExploits0References6
EUVD
EUVD
added 2 days ago6 views

EUVD-2026-59730

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: hold sk properly in isoconnready sk deref in isoconnready must be done either under conn-lock, or holding a refcount, to avoid concurrent close. conn-sk is currently accessed without either: Task 1 Task 2...

5.4AI score0.00166EPSS
SaveExploits0References3
Cvelist
Cvelist
added 2 days ago29 views

CVE-2026-74536 Bluetooth: ISO: fix leaking sk after socket release

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix leaking sk after socket release isosockkill tests !sockflagsk, SOCKZAPPED || sk-sksocket || sockflagsk, SOCKDEAD for early return, but this is always true since sockorphansk sets SOCKDEAD, so the sk reference...

0.00168EPSS
SaveExploits0References4
Cvelist
Cvelist
added 2 days ago32 views

CVE-2026-74537 Bluetooth: ISO: hold sk properly in iso_conn_ready

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: hold sk properly in isoconnready sk deref in isoconnready must be done either under conn-lock, or holding a refcount, to avoid concurrent close. conn-sk is currently accessed without either: Task 1 Task 2...

8.8CVSS0.00166EPSS
SaveExploits0References3
ATTACKERKB
ATTACKERKB
added 2 days ago8 views

CVE-2026-74536

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix leaking sk after socket release isosockkill tests !sockflagsk, SOCKZAPPED || sk-sksocket || sockflagsk, SOCKDEAD for early return, but this is always true since sockorphansk sets SOCKDEAD, so the sk reference...

5.3AI score0.00168EPSS
SaveExploits0References5Affected Software1
ATTACKERKB
ATTACKERKB
added 2 days ago7 views

CVE-2026-74535

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: avoid deadlocks in isosocktimeout isosocktimeout takes locksock, so sync disabling the timer while holding that lock may deadlock. isosocktimeout may also run concurrently with isoconndel, which leads to UAF Task ...

5.2AI score0.00168EPSS
SaveExploits0References5Affected Software1
Cvelist
Cvelist
added 2 days ago33 views

CVE-2026-74535 Bluetooth: ISO: avoid deadlocks in iso_sock_timeout

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: avoid deadlocks in isosocktimeout isosocktimeout takes locksock, so sync disabling the timer while holding that lock may deadlock. isosocktimeout may also run concurrently with isoconndel, which leads to UAF Task ...

8.8CVSS0.00168EPSS
SaveExploits0References4
CVE
CVE
added 2 days ago11 views

CVE-2026-74535

CVE-2026-74535 affects the Linux kernel Bluetooth ISO subsystem. The vulnerability arises in iso_sock_timeout, which takes lock_sock; keeping the timer disabled while holding that lock may deadlock, and it can run concurrently with iso_conn_del(), leading to a use-after-free of hcon.iso_data. The...

8.8CVSS5.3AI score0.00168EPSS
SaveExploits0References4
EUVD
EUVD
added 2 days ago6 views

EUVD-2026-59728

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: avoid deadlocks in isosocktimeout isosocktimeout takes locksock, so sync disabling the timer while holding that lock may deadlock. isosocktimeout may also run concurrently with isoconndel, which leads to UAF Task ...

5.3AI score0.00168EPSS
SaveExploits0References4
OSV
OSV
added 2 days ago5 views

CVE-2026-74535 Bluetooth: ISO: avoid deadlocks in iso_sock_timeout

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: avoid deadlocks in isosocktimeout isosocktimeout takes locksock, so sync disabling the timer while holding that lock may deadlock. isosocktimeout may also run concurrently with isoconndel, which leads to UAF Task ...

5.5AI score
SaveExploits0References7
Cvelist
Cvelist
added 2 days ago29 views

CVE-2026-74533 Bluetooth: ISO: fix race of kfree vs kref_get_unless_zero

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix race of kfree vs krefgetunlesszero hciconn::isodata is accessed and modified without lock or RCU. This leads to a race Task hdev-workqueue Task 2 isorecv isoconnputconn conn = LOAD hcon-isodata isoconnfreeconn...

8.8CVSS0.00155EPSS
SaveExploits0References2
EUVD
EUVD
added 2 days ago6 views

EUVD-2026-59726

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix race of kfree vs krefgetunlesszero hciconn::isodata is accessed and modified without lock or RCU. This leads to a race Task hdev-workqueue Task 2 isorecv isoconnputconn conn = LOAD hcon-isodata isoconnfreeconn...

5.4AI score0.00155EPSS
SaveExploits0References2
Debian CVE
Debian CVE
added 2 days ago5 views

CVE-2026-74533

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix race of kfree vs krefgetunlesszero hciconn::isodata is accessed and modified without lock or RCU. This leads to a race Task hdev-workqueue Task 2 isorecv isoconnputconn conn = LOAD hcon-isodata isoconnfreeconn...

8.8CVSS5.3AI score0.00155EPSS
SaveExploits0
Rows per page
Query Builder