Lucene search
+L

13333 matches found

Cvelist
Cvelist
added 2026/07/19 3:39 p.m.37 views

CVE-2026-64045 ovpn: tcp - use cached peer pointer in ovpn_tcp_close()

In the Linux kernel, the following vulnerability has been resolved: ovpn: tcp - use cached peer pointer in ovpntcpclose ovpntcpclose loads the ovpnsocket via rcudereferenceskuserdata under rcureadlock, takes a reference on sock-peer, caches the peer pointer in a local, and drops the read lock. It...

8.4CVSS0.00154EPSS
SaveExploits0References3
EUVD
EUVD
added 2026/07/19 3:39 p.m.13 views

EUVD-2026-45618

In the Linux kernel, the following vulnerability has been resolved: ovpn: tcp - use cached peer pointer in ovpntcpclose ovpntcpclose loads the ovpnsocket via rcudereferenceskuserdata under rcureadlock, takes a reference on sock-peer, caches the peer pointer in a local, and drops the read lock. It...

5.3AI score0.00154EPSS
SaveExploits0References3
OSV
OSV
added 2026/07/19 3:39 p.m.6 views

CVE-2026-64045 ovpn: tcp - use cached peer pointer in ovpn_tcp_close()

In the Linux kernel, the following vulnerability has been resolved: ovpn: tcp - use cached peer pointer in ovpntcpclose ovpntcpclose loads the ovpnsocket via rcudereferenceskuserdata under rcureadlock, takes a reference on sock-peer, caches the peer pointer in a local, and drops the read lock. It...

8.4CVSS5.3AI score0.00154EPSS
SaveExploits0References6
Debian CVE
Debian CVE
added 2026/07/19 3:39 p.m.7 views

CVE-2026-64044

In the Linux kernel, the following vulnerability has been resolved: ovpn: respect peer refcount in CMDNEWPEER error path ovpnnlpeernewdoit's error path calls ovpnpeerrelease directly rather than ovpnpeerput, bypassing the kref. The accompanying comment "peer was not yet hashed, thus it is not use...

7.8CVSS5.2AI score0.00172EPSS
SaveExploits0
EUVD
EUVD
added 2026/07/19 3:39 p.m.7 views

EUVD-2026-45608

In the Linux kernel, the following vulnerability has been resolved: igc: set tx buffer type for SMD frames Sashiko pointed out that igcfpeinitsmdframe initializes igctxbuffer fields for an SMD skb, but does not set the buffer type:...

5.6AI score0.00442EPSS
SaveExploits0References3
Debian CVE
Debian CVE
added 2026/07/19 3:39 p.m.7 views

CVE-2026-64035

In the Linux kernel, the following vulnerability has been resolved: igc: set tx buffer type for SMD frames Sashiko pointed out that igcfpeinitsmdframe initializes igctxbuffer fields for an SMD skb, but does not set the buffer type:...

9.8CVSS5.4AI score0.00442EPSS
SaveExploits0
OSV
OSV
added 2026/07/19 3:39 p.m.5 views

CVE-2026-64025 bpf, skmsg: fix verdict sk_data_ready racing with ktls rx

In the Linux kernel, the following vulnerability has been resolved: bpf, skmsg: fix verdict skdataready racing with ktls rx skpsockstrpdataready already checks tlsswhasctxrx and defers to psock-saveddataready when a TLS RX context is present, avoiding a conflict with the TLS strparser's ownership...

9.8CVSS5.3AI score0.00444EPSS
SaveExploits0References8
CVE
CVE
added 2026/07/19 3:39 p.m.18 views

CVE-2026-64025

CVE-2026-64025 affects Linux kernel BPF plumbing where a TLS RX context could cause a use-after-free-like condition in data-path when a socket is inserted into a sockmap before TLS RX is configured. The issue arises because sk_psock_verdict_data_ready() does not guard against TLS RX ownership of ...

9.8CVSS5.4AI score0.00444EPSS
SaveExploits0References5
CVE
CVE
added 2026/07/19 3:39 p.m.24 views

CVE-2026-64024

CVE-2026-64024 concerns a Linux kernel issue where a per-CPU tcp_tw_isn leak could enable ISN prediction. The root cause was that TIME_WAIT-derived ISNs were stored in a per-CPU variable and could be consumed by a subsequent SYN if a packet was dropped along several paths (e.g., min_ttl/min_hop, ...

9.4CVSS5.6AI score0.00385EPSS
SaveExploits0References3
NVD
NVD
added 2026/07/19 3:16 p.m.10 views

CVE-2026-63871

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: Fix data-race on isopi fields in hcigetroute calls isoconnectbis, isoconnectcis, isolistenbis, and isoconnbigsync call hcigetroute using isopisk-dst, isopisk-src, and isopisk-srctype without holding locksock. Thes...

0.00157EPSS
SaveExploits0References4
Cvelist
Cvelist
added 2026/07/19 2:56 p.m.31 views

CVE-2026-64011 nfc: llcp: Fix use-after-free in llcp_sock_release()

In the Linux kernel, the following vulnerability has been resolved: nfc: llcp: Fix use-after-free in llcpsockrelease llcpsockrelease unconditionally unlinks the socket from the local sockets list. However, if the socket is still in connecting state, it is on the connecting list. Fix this by...

7.8CVSS0.00126EPSS
SaveExploits0References8
EUVD
EUVD
added 2026/07/19 2:56 p.m.8 views

EUVD-2026-45583

In the Linux kernel, the following vulnerability has been resolved: nfc: llcp: Fix use-after-free race in nfcllcprecvcc A race condition exists in the NFC LLCP connection state machine where the connection acceptance packet CC can be processed concurrently with socket release. This can lead to a...

5.5AI score0.00255EPSS
SaveExploits0References8
CVE
CVE
added 2026/07/19 2:56 p.m.25 views

CVE-2026-64011

The CVE-2026-64011 issue affects the Linux kernel NFC LLCP path: llcp_sock_release() unlinks a socket from the local sockets list unconditionally, but if the socket is still in the connecting state it resides on the connecting list. The fix adds a state check and unlinks from the correct list, ad...

7.8CVSS5.4AI score0.00126EPSS
SaveExploits0References8
Cvelist
Cvelist
added 2026/07/19 2:56 p.m.33 views

CVE-2026-64010 nfc: llcp: Fix use-after-free race in nfc_llcp_recv_cc()

In the Linux kernel, the following vulnerability has been resolved: nfc: llcp: Fix use-after-free race in nfcllcprecvcc A race condition exists in the NFC LLCP connection state machine where the connection acceptance packet CC can be processed concurrently with socket release. This can lead to a...

8.8CVSS0.00255EPSS
SaveExploits0References8
CVE
CVE
added 2026/07/19 2:56 p.m.20 views

CVE-2026-64010

CVE-2026-64010 involves a use-after-free in the Linux NFC LLCP stack. The race occurs when nfc_llcp_recv_cc() moves a socket from the connecting_sockets list to the sockets list without holding the socket lock, risking linking a freed socket if llcp_sock_release() runs concurrently. The mitigatio...

8.8CVSS5.5AI score0.00255EPSS
SaveExploits0References8
Debian CVE
Debian CVE
added 2026/07/19 2:56 p.m.7 views

CVE-2026-64010

In the Linux kernel, the following vulnerability has been resolved: nfc: llcp: Fix use-after-free race in nfcllcprecvcc A race condition exists in the NFC LLCP connection state machine where the connection acceptance packet CC can be processed concurrently with socket release. This can lead to a...

8.8CVSS5.3AI score0.00255EPSS
SaveExploits0
Debian CVE
Debian CVE
added 2026/07/19 2:56 p.m.6 views

CVE-2026-64011

In the Linux kernel, the following vulnerability has been resolved: nfc: llcp: Fix use-after-free in llcpsockrelease llcpsockrelease unconditionally unlinks the socket from the local sockets list. However, if the socket is still in connecting state, it is on the connecting list. Fix this by...

7.8CVSS5.2AI score0.00126EPSS
SaveExploits0
OSV
OSV
added 2026/07/19 2:56 p.m.6 views

CVE-2026-64010 nfc: llcp: Fix use-after-free race in nfc_llcp_recv_cc()

In the Linux kernel, the following vulnerability has been resolved: nfc: llcp: Fix use-after-free race in nfcllcprecvcc A race condition exists in the NFC LLCP connection state machine where the connection acceptance packet CC can be processed concurrently with socket release. This can lead to a...

8.8CVSS5.5AI score0.00255EPSS
SaveExploits0References11
EUVD
EUVD
added 2026/07/19 2:56 p.m.7 views

EUVD-2026-45584

In the Linux kernel, the following vulnerability has been resolved: nfc: llcp: Fix use-after-free in llcpsockrelease llcpsockrelease unconditionally unlinks the socket from the local sockets list. However, if the socket is still in connecting state, it is on the connecting list. Fix this by...

5.4AI score0.00126EPSS
SaveExploits0References8
OSV
OSV
added 2026/07/19 2:56 p.m.5 views

CVE-2026-64011 nfc: llcp: Fix use-after-free in llcp_sock_release()

In the Linux kernel, the following vulnerability has been resolved: nfc: llcp: Fix use-after-free in llcpsockrelease llcpsockrelease unconditionally unlinks the socket from the local sockets list. However, if the socket is still in connecting state, it is on the connecting list. Fix this by...

7.8CVSS5.4AI score0.00126EPSS
SaveExploits0References11
Rows per page
Query Builder