400553 matches found
CVE-2026-90142
CVE-2026-90142 is an out-of-bounds write vulnerability in the Linux kernel's virtio_net driver. When an AF_XDP socket is attached, the function virtnet_rx_resize fails to resize the rq->xsk_buffs XSK buffer array. If the RX ring size is subsequently increased (e.g., via ethtool -G ), virtnet_r...
CVE-2026-90141
CVE-2026-90141 is an integer overflow in the Linux kernel IPVS FTP helper (ip_vs_ftp_get_addrport()). Decimal digits from a crafted FTP PASV/EPSV response are accumulated into a __u16 port variable and unsigned char address octets without overflow checks, causing the value to wrap and the helper ...
CVE-2026-90139
This vulnerability affects the Linux kernel FUSE (Filesystem in Userspace) module. The root cause is a NULL pointer dereference in fuse_fill_super_submount(): when fuse_iget() fails to allocate an inode (e.g., under memory pressure), the resulting NULL is passed unchecked to get_fuse_inode(), cau...
CVE-2026-90140
This Linux kernel vulnerability affects the cuse (Character device in Userspace) module. Since commit 053fc4f755ad, fuse_conn_put() releases the fuse_conn via call_rcu() rather than synchronously. Because fc->release points to cuse_fc_release() in the cuse module, removing the module (rmmod cu...
CVE-2026-90138
CVE-2026-90138 affects the Linux kernel vsock (virtual socket) subsystem . The root cause is that vsock_accept() incorrectly checks the listener socket's sk_err field, which may retain a stale EPROTO error set during a prior failed self-connect while the socket was in TCP_SYN_SENT state. This cau...
CVE-2026-90137
CVE-2026-90137 is an out-of-bounds read in the hp-bioscfg platform driver of the Linux kernel. The PSWD_ENCODINGS parser reads password_obj[elem + pos_values] while copying supported password encodings from an ACPI package, but lacks a bounds check on the computed index. A malformed ACPI package ...
CVE-2026-90136
CVE-2026-90136 affects the Linux kernel 's AMD HSMP hwmon driver. In hsmp_hwmon_write(), a user-supplied signed value written to power1_cap is divided by an unsigned constant before being stored in a __u32 field. This causes a negative write (e.g., echo -1 > power1_cap) to be converted into a ...
CVE-2026-90135
CVE-2026-90135 affects the Linux kernel net subsystem. The vulnerability is a use-after-free crash triggered when reading /sys/kernel/debug/ref_tracker/* after a failure in alloc_percpu() or dev_addr_init() within alloc_netdev_mqs(). The root cause is that commit 4d92b95ff2f9, which introduced ne...
CVE-2026-90133
CVE-2026-90133 is a heap out-of-bounds write in the Linux kernel's NTFS filesystem driver , specifically in the ntfs_ir_to_ib() function. The function copies entries from an index_root structure into a fixed-size buffer (index_block_size bytes) via memcpy without verifying that the entries fit wi...
CVE-2026-90134
This vulnerability affects the Linux kernel's NTFS filesystem compressed I/O paths. The root cause is that several paths discard the address returned by kmap_local_page() and instead use page_address() to access or unmap pages, which is invalid for highmem pages and causes local mappings to be un...
CVE-2026-90132
CVE-2026-90132 affects the Linux kernel's NTFS filesystem driver . An unprivileged local user can call setxattr on the reserved $LXUID, $LXGID, $LXMOD, and $LXDEV extended attributes without holding CAP_SYS_ADMIN , allowing modification of file metadata (owner, group, modification time, device nu...
CVE-2026-90131
A data race in the Linux kernel's NTFS filesystem driver allows a concurrent mmap read fault to observe torn attribute length and offset fields in the MFT record while another thread performs link() or unlink(). The root cause is that ntfs_read_iomap_begin_resident() walks the MFT record without ...
CVE-2026-90130
CVE-2026-90130 is a Linux kernel vulnerability in the vdpa_sim module. When kthread_run_worker() fails during device creation, vdpasim_create() leaves vdpasim->worker as an ERR_PTR . The subsequent error path releases the partially initialized simulator, and vdpasim_free() unconditionally pass...
CVE-2026-90129
This Linux kernel vulnerability affects the virtio_balloon driver. A commit that added a generic virtio bus .shutdown handler (for reboot and kexec) breaks and resets all virtio devices, but virtio_balloon provides no .shutdown of its own, so its asynchronous work remains armed. Once the device i...
CVE-2026-90128
CVE-2026-90128 is a bug in the Linux kernel's vdpa/mlx5 driver, specifically in the add_direct_chain() function. Newly allocated direct MR entries are added to a local list tmp, which is spliced into mr->head only on success. However, on the error path, the cleanup loop incorrectly iterated ov...
CVE-2026-90127
This Linux kernel vulnerability affects the virtio RTC driver. The root cause is that RTC alarm requests wait without a timeout for the device to return request buffers. On surprise removal , virtio-pci marks the virtqueues broken before unregistering the device; if an alarm request is in flight ...
CVE-2026-90126
CVE-2026-90126 affects the pcf8563 RTC driver in the Linux kernel . The function pcf8563_clkout_register_clk() registers a CLKOUT clock provider via of_clk_add_provider() but never unwinds it—there is no matching of_clk_del_provider() call and the driver lacks a remove callback. As a result, ever...
CVE-2026-90125
CVE-2026-90125 is a request buffer leak in the Linux kernel's SMB client , specifically in smb2_new_read_req(). The function allocates a buffer via smb2_plain_req_init() but fails to release it on two early error returns: a failed initialization and a failed smbd_register_mr() call. Because -EAGA...
CVE-2026-90124
This vulnerability affects the Linux kernel 's irqchip/renesas-rzg2l driver. The functions rzg2l_clear_irq_int() and rzg2l_clear_tint_int() perform a racy read-modify-write on the ISCR/TSCR status registers, which are write-0-to-clear per bit. If another interrupt's status bit is set between the ...
CVE-2026-90123
CVE-2026-90123 affects the Linux kernel irqchip/ast2700-intc driver (Aspeed AST2700 interrupt controller). The root cause is that fwnode_device_is_compatible() performs a GFP_KERNEL memory allocation, which is unsafe in the irq_domain_activate() callback context — a path invoked from __setup_irq(...