Lucene search
+L

46897 matches found

Cvelist
Cvelist
added 2026/08/22 3:33 p.m.10 views

CVE-2026-74727 ovpn: skip rehash for peers already removed from by_id

In the Linux kernel, the following vulnerability has been resolved: ovpn: skip rehash for peers already removed from byid ovpnnlpeersetdoit resolves the target peer via ovpnpeergetbyid before taking ovpn-lock. In the window between the lookup which only takes a refcount and the subsequent...

SaveExploits0References3
EUVD
EUVD
added 2026/08/22 3:33 p.m.6 views

EUVD-2026-64414

In the Linux kernel, the following vulnerability has been resolved: ovpn: skip rehash for peers already removed from byid ovpnnlpeersetdoit resolves the target peer via ovpnpeergetbyid before taking ovpn-lock. In the window between the lookup which only takes a refcount and the subsequent...

5.6AI score
SaveExploits0References3
CVE
CVE
added 2026/08/22 3:33 p.m.11 views

CVE-2026-74726

CVE-2026-74726 is a race condition in the Linux kernel's bonding driver (ALB mode), specifically in bond_alb_monitor(). The function reads primary_is_promisc under RCU, then drops RCU and acquires RTNL via rtnl_trylock(). In that window the active slave can change (e.g., via RTM_DELLINK), causing...

5.5AI score
SaveExploits0References8
Cvelist
Cvelist
added 2026/08/22 3:33 p.m.9 views

CVE-2026-74715 bpf: Fix netns reference imbalance in conntrack kfuncs

In the Linux kernel, the following vulnerability has been resolved: bpf: Fix netns reference imbalance in conntrack kfuncs The opts argument of the BPF conntrack kfuncs can point to a shared map value. bpfnfctlookup and bpfnfctallocentry read opts-netnsid separately when acquiring and releasing t...

SaveExploits0References2
EUVD
EUVD
added 2026/08/22 3:33 p.m.8 views

EUVD-2026-64402

In the Linux kernel, the following vulnerability has been resolved: bpf: Fix netns reference imbalance in conntrack kfuncs The opts argument of the BPF conntrack kfuncs can point to a shared map value. bpfnfctlookup and bpfnfctallocentry read opts-netnsid separately when acquiring and releasing t...

5.5AI score
SaveExploits0References2
CVE
CVE
added 2026/08/22 3:33 p.m.10 views

CVE-2026-74715

This vulnerability affects the Linux kernel BPF conntrack kfuncs (__bpf_nf_ct_lookup() and __bpf_nf_ct_alloc_entry()). The root cause is a race condition : the opts->netns_id field is read separately when acquiring and releasing the network namespace reference. Because opts can point to a shar...

5.5AI score
SaveExploits0References2
CVE
CVE
added 2026/08/22 3:33 p.m.9 views

CVE-2026-74714

CVE-2026-74714 is a use-after-free in the Linux kernel's bpf_iter_tcp_established_batch() function. The root cause is a race condition: when a TCP request_sock is being published onto the ehash chain, its refcount is still zero until after the bucket lock is dropped. The BPF TCP iterator calls pl...

5.7AI score
SaveExploits0References6
Cvelist
Cvelist
added 2026/08/22 3:33 p.m.9 views

CVE-2026-74714 bpf: tcp: Fix use-after-free in bpf_iter_tcp_established_batch()

In the Linux kernel, the following vulnerability has been resolved: bpf: tcp: Fix use-after-free in bpfitertcpestablishedbatch reqskqueuehashreq publishes a TCPNEWSYNRECV requestsock onto the ehash chain, drops the bucket lock, and only afterwards sets rskrefcnt to 3. Lockless readers such as...

SaveExploits0References6
CVE
CVE
added 2026/08/22 3:33 p.m.7 views

CVE-2026-74709

CVE-2026-74709 affects the AF_XDP (xsk) subsystem in the Linux kernel. The root cause is that user space can modify metadata flags after a TX request has been processed; when the kernel rereads those flags during completion, it may write a timestamp into the metadata area that was never requested...

5.5AI score
SaveExploits0References3
CVE
CVE
added 2026/08/22 3:33 p.m.11 views

CVE-2026-74700

CVE-2026-74700 is a use-after-free vulnerability in the Linux kernel's net/sched/cls_api subsystem (traffic control classifier API). The root cause is a race condition in tc_new_tfilter where a tcf_proto object can be briefly referenced by an unrelated unlocked classifier request, causing tp->...

5.7AI score
SaveExploits0References5
EUVD
EUVD
added 2026/08/22 3:33 p.m.8 views

EUVD-2026-64387

In the Linux kernel, the following vulnerability has been resolved: net/sched: clsapi: Always acquire rtnllock when destroying locked classifiers Another challenge with unlocked filters. There is a short window in tcnewtfilter where a tcfproto can be found and briefly referenced by a totally...

5.7AI score
SaveExploits0References5
Cvelist
Cvelist
added 2026/08/22 3:33 p.m.10 views

CVE-2026-74700 net/sched: cls_api: Always acquire rtnl_lock when destroying locked classifiers

In the Linux kernel, the following vulnerability has been resolved: net/sched: clsapi: Always acquire rtnllock when destroying locked classifiers Another challenge with unlocked filters. There is a short window in tcnewtfilter where a tcfproto can be found and briefly referenced by a totally...

SaveExploits0References5
EUVD
EUVD
added 2026/08/22 3:32 p.m.7 views

EUVD-2026-64379

In the Linux kernel, the following vulnerability has been resolved: net/smc: fix TOCTOU race between smclistenout and listener close smclistenout reads lsmc-sk.skstate without the listener lock, then acquires locksocknested only after the check passes. This opens a window where smccloseactive can...

5.6AI score
SaveExploits0References7
Cvelist
Cvelist
added 2026/08/22 3:32 p.m.10 views

CVE-2026-74692 net/smc: fix TOCTOU race between smc_listen_out() and listener close

In the Linux kernel, the following vulnerability has been resolved: net/smc: fix TOCTOU race between smclistenout and listener close smclistenout reads lsmc-sk.skstate without the listener lock, then acquires locksocknested only after the check passes. This opens a window where smccloseactive can...

SaveExploits0References7
CVE
CVE
added 2026/08/22 3:32 p.m.10 views

CVE-2026-74692

CVE-2026-74692 is a TOCTOU race condition in the Linux kernel's net/smc subsystem. The function smc_listen_out() reads sk_state without holding the listener lock, then acquires lock_sock_nested() only after the check passes. This window allows smc_close_active() to transition the listener to SMC_...

5.6AI score
SaveExploits0References7
EUVD
EUVD
added 2026/08/22 3:32 p.m.8 views

EUVD-2026-64377

In the Linux kernel, the following vulnerability has been resolved: s390/ism: Fix UAF of sba and ieq during ismdevexit A ism interrupt handler can be active in parallel with ismdevexit, accessing freed data structures. No new interrupts will be generated after unregisterieq. Drain ongoing interru...

5.4AI score
SaveExploits0References3
Cvelist
Cvelist
added 2026/08/22 3:32 p.m.11 views

CVE-2026-74686 rqspinlock: Reset tail when preserving queue on deadlock

In the Linux kernel, the following vulnerability has been resolved: rqspinlock: Reset tail when preserving queue on deadlock Currently, the destruction of the waiter queue is suppressed for rqspinlock in cases where a deadlock is detected. Deadlock checks happen relatively frequently on entry for...

SaveExploits0References2
Cvelist
Cvelist
added 2026/08/22 3:32 p.m.8 views

CVE-2026-74675 vt: stabilize tty reference in kbd_keycode with tty_port_tty_get

In the Linux kernel, the following vulnerability has been resolved: vt: stabilize tty reference in kbdkeycode with ttyportttyget kbdkeycode reads vc-port.tty without acquiring a tty reference, racing against conshutdown which clears port.tty under a different lock. Use ttyportttyget/ttykrefput to...

SaveExploits0References8
CVE
CVE
added 2026/08/22 3:32 p.m.4 views

CVE-2026-74675

CVE-2026-74675 is a race condition in the Linux kernel virtual terminal (VT) subsystem. The function kbd_keycode() reads vc->port.tty without acquiring a tty reference, while con_shutdown() can clear port.tty under a different lock, creating a window where a dangling pointer may be dereference...

5.5AI score
SaveExploits0References8
EUVD
EUVD
added 2026/08/22 3:32 p.m.4 views

EUVD-2026-64362

In the Linux kernel, the following vulnerability has been resolved: vt: stabilize tty reference in kbdkeycode with ttyportttyget kbdkeycode reads vc-port.tty without acquiring a tty reference, racing against conshutdown which clears port.tty under a different lock. Use ttyportttyget/ttykrefput to...

5.5AI score
SaveExploits0References8
Rows per page
Query Builder