531663 matches found
EUVD-2026-86645
In the Linux kernel, the following vulnerability has been resolved: vdpasimblk: reject out-of-range sector starts vdpasimblkcheckrange logs an invalid start sector but continues validating the request. The subsequent unsigned capacity subtraction can underflow and let an out-of-range buffer offse...
CVE-2026-97991 vdpa_sim_blk: reject out-of-range sector starts
In the Linux kernel, the following vulnerability has been resolved: vdpasimblk: reject out-of-range sector starts vdpasimblkcheckrange logs an invalid start sector but continues validating the request. The subsequent unsigned capacity subtraction can underflow and let an out-of-range buffer offse...
CVE-2026-97990 vdpa_sim_net: check TX pull result before RX copy
In the Linux kernel, the following vulnerability has been resolved: vdpasimnet: check TX pull result before RX copy vringhiovpulliotlb returns a signed byte count. A failed TX pull is currently added to the unsigned byte counter and then passed as a sizet length to receivefilter and...
CVE-2026-97990
The Linux kernel is vulnerable in the vdpa_sim_net component due to an improper check of the vringh_iov_pull_iotlb() return value. Because the function returns a signed byte count, a failed TX pull results in a negative error that is incorrectly added to an unsigned byte counter. This value is th...
EUVD-2026-86644
In the Linux kernel, the following vulnerability has been resolved: vdpasimnet: check TX pull result before RX copy vringhiovpulliotlb returns a signed byte count. A failed TX pull is currently added to the unsigned byte counter and then passed as a sizet length to receivefilter and...
CVE-2026-97989
The Linux kernel contains a vulnerability in vduse where vduse_validate_config() fails to properly validate the vq_align parameter, checking only the upper bound. This allows invalid values to reach vring_create_virtqueue_map(). Specifically, because split-ring helpers use align - 1 as a bit mask...
CVE-2026-97989 vduse: validate virtqueue alignment
In the Linux kernel, the following vulnerability has been resolved: vduse: validate virtqueue alignment vdusevalidateconfig only checks the upper bound of vqalign. Invalid values can therefore reach vringcreatevirtqueuemap. The split-ring helpers use align - 1 as a bit mask, so the alignment must...
EUVD-2026-86643
In the Linux kernel, the following vulnerability has been resolved: vduse: validate virtqueue alignment vdusevalidateconfig only checks the upper bound of vqalign. Invalid values can therefore reach vringcreatevirtqueuemap. The split-ring helpers use align - 1 as a bit mask, so the alignment must...
EUVD-2026-86642
In the Linux kernel, the following vulnerability has been resolved: vhost: invalidate vring access on IOTLB transitions When VIRTIOFACCESSPLATFORM changes, cached vring pointers and IOTLB metadata are interpreted in a different address space. Keeping them across the transition can leave stale rin...
CVE-2026-97988
The Linux kernel contains a vulnerability in vhost-net and vhost-vsock related to vring access during IOTLB transitions . When VIRTIO_F_ACCESS_PLATFORM changes, cached vring pointers and IOTLB metadata may be interpreted in the wrong address space, potentially leaving stale ring mappings in use. ...
EUVD-2026-86641
In the Linux kernel, the following vulnerability has been resolved: virtioinput: reset device if inputregisterdevice fails Probe marks the device DRIVEROK with virtiodeviceready before calling inputregisterdevice. If registration fails, the error path cleared vi-ready and called delvqs while the...
CVE-2026-97987
The Linux kernel contains a vulnerability in virtio_input where a device could maintain DMA access to queues that were already torn down. This occurs because the probe process marks the device as DRIVER_OK before calling input_register_device(); if registration fails, the error path cleared the v...
CVE-2026-97985
The Linux kernel contains a vulnerability in the af_unix component where blocking recv(MSG_PEEK) operations could hog CPU resources. The issue occurs because manage_oob() skips Out-Of-Band (OOB) socket buffers and returns NULL for the last MSG_PEEK , failing to update the @last marker in unix_str...
EUVD-2026-86639
In the Linux kernel, the following vulnerability has been resolved: afunix: Update last skb marker in manageoob. Fahad Alharbi reported that blocking recvMSGPEEK could hog CPU due to OOB skb. In the following cases, manageoob skips OOB skbs and returns NULL for the last recvMSGPEEK:...
CVE-2026-97986
A vulnerability exists in the Linux kernel regarding the virtio_input subsystem. The virtinput_remove() function unregisters an input device before resetting the virtio device. Because virtinput_recv_events() drops the vi->lock around input_event() , clearing vi->ready fails to stop callbac...
EUVD-2026-86640
In the Linux kernel, the following vulnerability has been resolved: virtioinput: stop callbacks before unregistering input device virtinputremove unregisters the input device before resetting the virtio device. virtinputrecvevents drops vi-lock around inputevent, so clearing vi-ready does not sto...
CVE-2026-97984
The Linux kernel contains a vulnerability where UDP sockets can experience a UDP length overflow when using IPV6_PMTUDISC_DO or IPV6_PMTUDISC_PROBE options. This occurs when sending a large packet over a network device with an unusually large MTU (greater than IP6_MAX_MTU), causing the 16-bit len...
EUVD-2026-86638
In the Linux kernel, the following vulnerability has been resolved: net: ipv6: Fix UDP length overflow with PMTU discover and big MTU This commit bounds cork-base.fragsize to IP6MAXMTU for UDP sockets to avoid a possible overflow of UDP length that triggers a WARN in udpsetlenshort when setsockop...
EUVD-2026-86637
In the Linux kernel, the following vulnerability has been resolved: vduse: return compat ioctl results directly The compat handler handles VDUSEIOTLBGETFD and VDUSEVQGETINFO, but then calls the native handler. Their different command sizes make native dispatch return -ENOIOCTLCMD. For GETFD, this...
CVE-2026-97982
The Linux kernel contains a vulnerability in the net: ethernet: cortina driver. Specifically, the gmac_rx() function incorrectly returns the remaining NAPI budget instead of the number of packets received. This causes an idle poll to report a full budget and remain scheduled. The fix involves upd...