Lucene search
+L

65285 matches found

Cvelist
Cvelist
added 3 days ago31 views

CVE-2026-68194 wifi: mt76: mt7921: drop TXRX_NOTIFY on non-mmio buses

In the Linux kernel, the following vulnerability has been resolved: wifi: mt76: mt7921: drop TXRXNOTIFY on non-mmio buses PKTTYPETXRXNOTIFY is an mmio-only event, but mt7921rxcheck and mt7921queuerxskb dispatch it to mt7921mactxfree on every bus. mt7921mactxfree cleans the DMA tx queues with...

0.002EPSS
SaveExploits0References5
EUVD
EUVD
added 3 days ago7 views

EUVD-2026-55292

In the Linux kernel, the following vulnerability has been resolved: wifi: ath12k: fix NULL pointer dereference in rhash table destroy When unbinding the ath12k driver, kernel NULL pointer dereferences occur in irqworksync called from rhashtabledestroy. Two hash tables are affected: 1. ath12klinks...

5.3AI score0.00189EPSS
SaveExploits0References2
OSV
OSV
added 3 days ago4 views

CVE-2026-68191 wifi: ath12k: fix NULL pointer dereference in rhash table destroy

In the Linux kernel, the following vulnerability has been resolved: wifi: ath12k: fix NULL pointer dereference in rhash table destroy When unbinding the ath12k driver, kernel NULL pointer dereferences occur in irqworksync called from rhashtabledestroy. Two hash tables are affected: 1. ath12klinks...

5.4AI score
SaveExploits0References5
CVE
CVE
added 3 days ago16 views

CVE-2026-68191

The CVE reports a NULL pointer dereference in the Linux kernel’s ath12k wifi driver during unbind, when irq_work_sync() from rhashtable_destroy() runs if hash tables were never fully initialized. Two affected hash tables are ath12k_link_sta (ath12k_base) and ath12k_dp_link_peer (ath12k_dp). The r...

5.3AI score0.00189EPSS
SaveExploits0References2
Debian CVE
Debian CVE
added 3 days ago6 views

CVE-2026-68177

In the Linux kernel, the following vulnerability has been resolved: tracing: Delay module ref count for "enableevent" trigger Triggers are now delayed from freeing, but can still be triggered until after the RCU grace period has ended. The freeing of the enableevent data is put into the...

5.3AI score0.00189EPSS
SaveExploits0
OSV
OSV
added 3 days ago4 views

CVE-2026-68174 tracing: Fix union collision of module and refcnt for dynamic events

In the Linux kernel, the following vulnerability has been resolved: tracing: Fix union collision of module and refcnt for dynamic events In 'struct traceeventcall', the 'module' pointer and the 'refcnt' atomic variable share the same memory space in a union. For dynamic events, the union member i...

5.5AI score
SaveExploits0References6
EUVD
EUVD
added 3 days ago10 views

EUVD-2026-55275

In the Linux kernel, the following vulnerability has been resolved: tracing: Fix union collision of module and refcnt for dynamic events In 'struct traceeventcall', the 'module' pointer and the 'refcnt' atomic variable share the same memory space in a union. For dynamic events, the union member i...

5.5AI score0.00198EPSS
SaveExploits0References3
OSV
OSV
added 3 days ago6 views

CVE-2026-68167 btrfs: do not try compression for data reloc inodes

In the Linux kernel, the following vulnerability has been resolved: btrfs: do not try compression for data reloc inodes BUG There is a syzbot report that the check inside getnewlocation triggered: BTRFS info device loop0: found 31 extents, stage: move data extents BTRFS info device loop0: leaf...

5.5AI score
SaveExploits0References5
CVE
CVE
added 3 days ago17 views

CVE-2026-68157

The CVE-2026-68157 entry pertains to the Linux kernel’s libceph code, where a guard around CRUSH type name lookup is missing. If a localized read selection traverses a parent bucket whose name exists in the CRUSH map but whose type has no matching entry in type_names, get_immediate_parent() can d...

5.2AI score0.002EPSS
SaveExploits0References5
OSV
OSV
added 3 days ago7 views

CVE-2026-68157 libceph: guard missing CRUSH type name lookup

In the Linux kernel, the following vulnerability has been resolved: libceph: guard missing CRUSH type name lookup Localized read selection can walk a parent bucket whose name exists in the CRUSH map while its type has no matching entry in typenames. getimmediateparent then dereferences a NULL...

5.3AI score
SaveExploits0References8
EUVD
EUVD
added 3 days ago8 views

EUVD-2026-55543

In the Linux kernel, the following vulnerability has been resolved: libceph: guard missing CRUSH type name lookup Localized read selection can walk a parent bucket whose name exists in the CRUSH map while its type has no matching entry in typenames. getimmediateparent then dereferences a NULL...

5.2AI score0.002EPSS
SaveExploits0References5
Debian CVE
Debian CVE
added 3 days ago7 views

CVE-2026-68154

In the Linux kernel, the following vulnerability has been resolved: libceph: reject zero bucket types in crushdecode CRUSH bucket type 0 is reserved for devices. The mapper relies on that invariant and uses type 0 to identify leaf devices. If crushdecode accepts a bucket with type 0, a malformed...

5.2AI score0.002EPSS
SaveExploits0
Debian CVE
Debian CVE
added 3 days ago4 views

CVE-2026-68150

In the Linux kernel, the following vulnerability has been resolved: fs/super: fix emergency thaw double-unlock of sumount dothawall iterates over all superblocks via iteratesupers with SUPERITEREXCL, which acquires sumount exclusively before calling the callback and releases it afterwards. Howeve...

5.3AI score0.00173EPSS
SaveExploits0
CVE
CVE
added 3 days ago18 views

CVE-2026-68141

The CVE affects the Linux kernel net/af_iucv path via afiucv_hs_callback_syn(), where a NULL child socket (nsk) after GFP_ATOMIC allocation can lead to a NULL pointer dereference when iucv_sock_kill(nsk) is invoked unconditionally in several reject paths. The fix ensures iucv_sock_kill() is calle...

5.3AI score0.00175EPSS
SaveExploits0References5
OSV
OSV
added 3 days ago4 views

CVE-2026-68141 net/af_iucv: fix NULL deref in afiucv_hs_callback_syn()

In the Linux kernel, the following vulnerability has been resolved: net/afiucv: fix NULL deref in afiucvhscallbacksyn afiucvhscallbacksyn allocates the child socket with GFPATOMIC. If the allocation fails, nsk is NULL. The connection-refused path is entered when the listen state check fails, the...

5.4AI score
SaveExploits0References8
EUVD
EUVD
added 3 days ago7 views

EUVD-2026-55523

In the Linux kernel, the following vulnerability has been resolved: net/afiucv: fix NULL deref in afiucvhscallbacksyn afiucvhscallbacksyn allocates the child socket with GFPATOMIC. If the allocation fails, nsk is NULL. The connection-refused path is entered when the listen state check fails, the...

5.3AI score0.00175EPSS
SaveExploits0References5
EUVD
EUVD
added 3 days ago7 views

EUVD-2026-55520

In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: Use sender devcom for MPV master-up After PCIe DPC recovery, mlx5 reloads the affected functions and replays multiport affiliation events. In the reported failure, the first relevant device error was: pcieport...

5.3AI score0.00175EPSS
SaveExploits0References4
CVE
CVE
added 3 days ago16 views

CVE-2026-68139

CVE-2026-68139 affects the Linux kernel mlx5e/MPV path. After PCIe DPC recovery, mlx5 reloads affected PCIe functions and replays multiport affiliation events; during resume, an RDMA multiport binding replay triggers an MPV_DEVCOM_MASTER_UP. The host panics with a NULL pointer dereference in mlx5...

5.3AI score0.00175EPSS
SaveExploits0References4
Debian CVE
Debian CVE
added 3 days ago6 views

CVE-2026-68137

In the Linux kernel, the following vulnerability has been resolved: net/x25: fix use-after-free in x25killbyneigh x25killbyneigh walks the global X.25 socket list looking for sockets attached to a terminating neighbour. x25listlock protects list membership while the lookup is in progress, but it...

5.4AI score0.00175EPSS
SaveExploits0
Debian CVE
Debian CVE
added 3 days ago4 views

CVE-2026-68135

In the Linux kernel, the following vulnerability has been resolved: net: hip04: fix RX buffer leak on buildskb failure When buildskb fails in hip04rxpoll, the driver jumps to the refill path without releasing the current RX buffer and its DMA mapping. Installing a replacement buffer then overwrit...

5.4AI score0.00175EPSS
SaveExploits0
Rows per page
Query Builder