32841 matches found
EUVD-2026-59565
In the Linux kernel, the following vulnerability has been resolved: dma-fence: Fix potential tracepoint null pointer dereferences Tracedmafencesignaled, tracedmafencewaitend and tracedmafencedestroy can all currently dereference a null fence-ops pointer after it has been reset on fence signalling...
CVE-2026-74418
CVE-2026-74418 covers a Linux kernel issue in the dma-fence tracepoints where Trace_dma_fence_signaled, trace_dma_fence_wait_end, and trace_dma_fence_destroy could dereference a null fence->ops after signalling. The fix uses safe string getters for most tracepoints and moves signaling logic be...
CVE-2026-74418 dma-fence: Fix potential tracepoint null pointer dereferences
In the Linux kernel, the following vulnerability has been resolved: dma-fence: Fix potential tracepoint null pointer dereferences Tracedmafencesignaled, tracedmafencewaitend and tracedmafencedestroy can all currently dereference a null fence-ops pointer after it has been reset on fence signalling...
EUVD-2026-59561
In the Linux kernel, the following vulnerability has been resolved: hfsplus: Remove the duplicate attr inode dirty marking action Syzbot reported a null-ptr-deref in 1. If the attributes file is not loaded during system mount, a trigger occurs 1 when setxattr is executed in userspace. Remove the...
CVE-2026-74414
CVE-2026-74414 affects the Linux kernel (hfsplus) where a null-pointer dereference could occur during setxattr if the attributes file is not loaded at mount time. The root cause is a duplicate attr inode dirty-marking action in hfsplus/xattr.c, leading to a potential dereference in hfsplus_setxat...
CVE-2026-74414 hfsplus: Remove the duplicate attr inode dirty marking action
In the Linux kernel, the following vulnerability has been resolved: hfsplus: Remove the duplicate attr inode dirty marking action Syzbot reported a null-ptr-deref in 1. If the attributes file is not loaded during system mount, a trigger occurs 1 when setxattr is executed in userspace. Remove the...
EUVD-2026-59554
In the Linux kernel, the following vulnerability has been resolved: wifi: ath11k: cancel SSR work items during PCI shutdown A reboot can crash the kernel if it overlaps with WLAN firmware crash recovery SSR. The crash is a NULL pointer dereference in the MHI teardown path while freeing DMA-backed...
CVE-2026-74407 wifi: ath11k: cancel SSR work items during PCI shutdown
In the Linux kernel, the following vulnerability has been resolved: wifi: ath11k: cancel SSR work items during PCI shutdown A reboot can crash the kernel if it overlaps with WLAN firmware crash recovery SSR. The crash is a NULL pointer dereference in the MHI teardown path while freeing DMA-backed...
CVE-2026-74407
CVE-2026-74407 affects the Linux kernel WiFi driver ath11k on PCI/MHI-based devices. A race between shutdown/reboot and WLAN firmware crash recovery (SSR) can cause a NULL pointer dereference in the MHI teardown path while freeing DMA-backed MHI contexts, potentially crashing the kernel. The fix ...
EUVD-2026-59553
In the Linux kernel, the following vulnerability has been resolved: vxlan: Fix potential null-ptr-deref in vxlangropreparereceive. udptunnelsockrelease could set sk-skuserdata to NULL while vxlangropreparereceive is running. Let's check if rcudereferenceskuserdata is NULL after skbgroremcsuminit...
CVE-2026-74406
CVE-2026-74406 affects the Linux kernel’s VXLAN/GRO path. The root cause is a potential null pointer dereference in vxlan_gro_prepare_receive() caused by udp_tunnel_sock_release() setting sk->sk_user_data to NULL while the GRO receive path runs, with a NULL check hint after skb_gro_remcsum_ini...
CVE-2026-74406 vxlan: Fix potential null-ptr-deref in vxlan_gro_prepare_receive().
In the Linux kernel, the following vulnerability has been resolved: vxlan: Fix potential null-ptr-deref in vxlangropreparereceive. udptunnelsockrelease could set sk-skuserdata to NULL while vxlangropreparereceive is running. Let's check if rcudereferenceskuserdata is NULL after skbgroremcsuminit...
CVE-2026-74403 crypto: ccp - Check for page allocation failure correctly in TIO
In the Linux kernel, the following vulnerability has been resolved: crypto: ccp - Check for page allocation failure correctly in TIO Sashiko notes: if snpallocfirmwarepages returns NULL under memory pressure, is it safe to pass it directly to pageaddress? On architectures without HASHEDPAGEVIRTUA...
CVE-2026-74403 crypto: ccp - Check for page allocation failure correctly in TIO
In the Linux kernel, the following vulnerability has been resolved: crypto: ccp - Check for page allocation failure correctly in TIO Sashiko notes: if snpallocfirmwarepages returns NULL under memory pressure, is it safe to pass it directly to pageaddress? On architectures without HASHEDPAGEVIRTUA...
CVE-2026-74400 bpf: fix crash in bpf_[set|remove]_dentry_xattr for negative dentries
In the Linux kernel, the following vulnerability has been resolved: bpf: fix crash in bpfset|removedentryxattr for negative dentries bpfsetdentryxattr and bpfremovedentryxattr BPF kfuncs attempt to lock the inode of the supplied dentry without checking if it is NULL. If a negative dentry is passe...
EUVD-2026-59547
In the Linux kernel, the following vulnerability has been resolved: bpf: fix crash in bpfset|removedentryxattr for negative dentries bpfsetdentryxattr and bpfremovedentryxattr BPF kfuncs attempt to lock the inode of the supplied dentry without checking if it is NULL. If a negative dentry is passe...
CVE-2026-74400
CVE-2026-74400 affects the Linux kernel: bpf_set_dentry_xattr and bpf_remove_dentry_xattr kfuncs may crash when given negative dentries because d_inode(dentry) can be NULL, leading to inode_lock(NULL). The fix adds a NULL check for the inode and returns -EINVAL when NULL. The patch also removes a...
CVE-2026-74379
CVE-2026-74379 affects the Linux kernel dax/kmem driver. The root cause is a partial success in dev_dax_kmem_probe() where at least one resource range is mapped but a subsequent range fails, leading to the range resource being NULL and the probe reporting success. Consequently, dev_dax_kmem_remov...
CVE-2026-74379 dax/kmem: account for partial discontiguous resource upon removal
In the Linux kernel, the following vulnerability has been resolved: dax/kmem: account for partial discontiguous resource upon removal When devdaxkmemprobe partially succeeds at least one range is mapped but a subsequent range fails requestmemregion or addmemorydrivermanaged, the probe silently...
CVE-2026-74366
CVE-2026-74366 concerns a NULL dereference in the Linux kernel’s ath12k wifi driver when handling unready links. The issue occurs because a path that validates a MAC channel may not create the vdev, leaving arvif->is_created as false and arvif->ar NULL. Subsequent code paths allocate an ars...