Skip to content
VulniPulse

Complete feed

Recently updated

Advisories the vendor has revised

Home overview

Android app · Google Play

Take your CVE monitoring with you.

Choose a whole vendor or a precise platform, then receive matching security advisories by phone notification, email, or both. Coverage follows 32 official vendor sources and 160+ reviewed platform categories.

UnratedRed Hat

Advisory [CVE-2026-64449] bound slave read/write to the kern_buf size

In the Linux kernel, the following vulnerability has been resolved: staging: vme_user: bound slave read/write to the kern_buf size The SLAVE-path helpers buffer_to_user() and buffer_from_user() copy 'count' bytes into/out of the fixed-size kern_buf (size_buf == PCI_BUF_SIZE == 0x20000, 128 KiB) using *ppos as the offset, without bounding *ppos + count against size_buf. vme_user_write()/vme_user_read() only clamp count to the VME window size (image_size = vme_get_size(resource)), which VME_SET_SLAVE sets from the user-supplied slave.size -- validated against the VME address space (up to VME_A32_MAX = 4 GiB), not against PCI_BUF_SIZE. Clamp count against size_buf in both helpers, with an early return when *ppos is already at/after the buffer end. *ppos is >= 0 here (the caller rejects negative offsets), so size_buf - *ppos cannot wrap. This mirrors the existing clamp in the MASTER-path helpers resource_to_user() / resource_from_user(), and matches the read()/write() convention of a short transfer at end-of-buffer.

CVE-2026-64449
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64421] Fix use-after-free on remove

In the Linux kernel, the following vulnerability has been resolved: media: nxp: imx8-isi: Fix use-after-free on remove KASAN reports a slab-use-after-free in __media_entity_remove_link() during rmmod of imx8_isi: BUG: KASAN: slab-use-after-free in __media_entity_remove_link+0x608/0x650 Read of size 2 at addr ffff0000d47cb02a by task rmmod/724 Call trace: __media_entity_remove_link+0x608/0x650 __media_entity_remove_links+0x78/0x144 __media_device_unregister_entity+0x150/0x280 media_device_unregister_entity+0x48/0x68 v4l2_device_unregister_subdev+0x158/0x300 v4l2_async_unbind_subdev_one+0x22c/0x358 v4l2_async_nf_unbind_all_subdevs+0xfc/0x1c0 v4l2_async_nf_unregister+0x5c/0x14c mxc_isi_remove+0x124/0x2a0 [imx8_isi] Allocated by task 249: __kmalloc_noprof+0x27c/0x690 mxc_isi_crossbar_init+0x22c/0x560 [imx8_isi] Freed by task 724: kfree+0x1e4/0x5b0 mxc_isi_crossbar_cleanup+0x34/0x80 [imx8_isi] mxc_isi_remove+0x11c/0x2a0 [imx8_isi] The problem is that mxc_isi_remove() calls mxc_isi_crossbar_cleanup() before mxc_isi_v4l2_cleanup(). The crossbar cleanup frees the media entity pads, but the subsequent v4l2 cleanup still tries to remove media links that reference those pads. Fix this by calling mxc_isi_v4l2_cleanup() before mxc_isi_crossbar_cleanup() to ensure all media entities are properly unregistered while the pads are still valid.

CVE-2026-64421
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64493] fix runtime PM leak on read error

In the Linux kernel, the following vulnerability has been resolved: iio: pressure: mpl115: fix runtime PM leak on read error mpl115_read_raw() takes a runtime PM reference with pm_runtime_get_sync() before reading the processed pressure or raw temperature, but on the read error path it returns without calling pm_runtime_put_autosuspend(). Each failed read therefore leaks a runtime PM reference and prevents the device from autosuspending. Drop the reference before checking the return value so both the success and error paths are balanced. When a read error occurs in the `mpl115_read_raw()` function, the driver fails to properly release a Power Management (PM) reference. This oversight leads to a continuous leak of PM references with each failed read. The accumulation of these unreleased references can prevent the affected device from entering an autosuspend state, potentially leading to increased power consumption or other resource management issues. Red Hat severity: not rated. Weakness: CWE-772. Red Hat lists Red Hat Enterprise Linux 10; Red Hat Enterprise Linux 6; Red Hat Enterprise Linux 7; Red Hat Enterprise Linux 8; Red Hat Enterprise Linux 9 as not affected.

CVE-2026-64493
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64259] make a fuse_req on SQE commit only findable after memcpy

In the Linux kernel, the following vulnerability has been resolved: fuse-uring: make a fuse_req on SQE commit only findable after memcpy Bad userspace might try to trick us and send commit SQEs request unique / commit-id of requests that are not even send to fuse-server (io_uring_cmd_done() not called) yet. fuse_uring_commit_fetch() ends the fuse request when the ring entry has a wrong state, but that could have caused a use-after-free with the memcpy operations in fuse_uring_send_in_task(). In order to avoid such races the call of fuse_uring_add_to_pq() is moved after the copy operations and just before completing the io-uring request - malicious userspace cannot find the request anymore until all prepration work in fuse-client/kernel is completed. This also moves fuse_uring_add_to_pq() a bit up in the code to avoid a forward declaration. Also not with a preparation commit, to make it easier to back port to older kernels. A local attacker could exploit a race condition by sending specially crafted requests before they are fully processed. This could lead to a use-after-free vulnerability, potentially allowing for arbitrary code execution or denial of service. Red Hat severity: not rated. Weakness: CWE-763.

CVE-2026-64259
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64499] fix PM reference leak in buffer preenable

In the Linux kernel, the following vulnerability has been resolved: iio: adc: ti-ads1119: fix PM reference leak in buffer preenable ads1119_triggered_buffer_preenable() resumes the device with pm_runtime_resume_and_get() before starting a conversion. If i2c_smbus_write_byte() fails, the function returns the error directly and leaves the runtime PM usage counter elevated. The matching postdisable callback is not called when preenable fails, so the reference is leaked and the device may remain runtime-active indefinitely. Store the I2C transfer result in ret and drop the runtime PM reference on failure before returning the error. A flaw was found in the Linux kernel's `ti-ads1119` Analog-to-Digital Converter (ADC) driver. This vulnerability occurs during the buffer pre-enable process, where a Power Management (PM) reference is not properly released if an I2C communication error occurs. This oversight can lead to a resource leak, potentially causing the affected device to remain active indefinitely and consume system resources, which could result in a denial of service. Red Hat severity: not rated. Weakness: CWE-772. Red Hat lists Red Hat Enterprise Linux 10; Red Hat Enterprise Linux 6; Red Hat Enterprise Linux 7; Red Hat Enterprise Linux 8; Red Hat Enterprise Linux 9 as not affected.

CVE-2026-64499
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64440] fix OOB write in HT_caps_handler

In the Linux kernel, the following vulnerability has been resolved: staging: rtl8723bs: fix OOB write in HT_caps_handler() HT_caps_handler() iterates pIE->length bytes and writes into HT_caps.u.HT_cap[], which is a fixed 26-byte array (sizeof struct HT_caps_element). Because pIE->length is a raw u8 from an over-the-air 802.11 AssocResponse frame and is never validated, a malicious AP can set it up to 255, causing up to 229 bytes of out-of-bounds writes into adjacent fields of struct mlme_ext_info. Truncate the iteration count to the size of HT_caps.u.HT_cap using umin() so that data from a longer-than-expected IE is silently ignored rather than written out of bounds, preserving interoperability with APs that pad the element. An early return on oversized IEs was considered but rejected: it would bypass the pmlmeinfo->HT_caps_enable = 1 assignment that precedes the loop, silently disabling HT mode for APs that append extra bytes to the HT Capabilities IE. A remote attacker, by operating a malicious Access Point (AP), can send a specially crafted 802.11 AssocResponse frame. This can trigger an out-of-bounds write vulnerability in the `HT_caps_handler()` function, leading to memory corruption. This memory corruption could allow an attacker to cause a denial of service or potentially execute arbitrary code. Red Hat severity: not rated. Weakness: CWE-787.

CVE-2026-64440
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64484] check snd_ctl_new1 return value

check snd_ctl_new1() return value. Red Hat rates this a security issue. Weakness: CWE-476.

CVE-2026-64484
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64270] mms114 - reject an oversized device packet size

mms114 - reject an oversized device packet size. Red Hat rates this a security issue. Weakness: CWE-787.

CVE-2026-64270
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64497] Cleanup initializations and fix sign-extension bug

Cleanup initializations and fix sign-extension bug. Red Hat rates this a security issue. Weakness: CWE-681.

CVE-2026-64497
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64391] use opener credentials for ADS I/O

use opener credentials for ADS I/O. Red Hat rates this a security issue. Weakness: CWE-250.

CVE-2026-64391
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64262] end fuse_req on io-uring cancel task work

end fuse_req on io-uring cancel task work. Red Hat rates this a security issue. Weakness: CWE-772.

CVE-2026-64262
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64429] use raw_spinlock_t in the irq startup path

use raw_spinlock_t in the irq startup path. Red Hat rates this a security issue. Weakness: CWE-663.

CVE-2026-64429
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64264] fix EFAULT clobber in fuse_uring_commit

fix EFAULT clobber in fuse_uring_commit. Red Hat rates this a security issue.

CVE-2026-64264
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64420] Delay dev_set_drvdata until probe success

In the Linux kernel, the following vulnerability has been resolved: mfd: cros_ec: Delay dev_set_drvdata() until probe success If ec_device_probe() fails, cros_ec_class_release releases memory for the cros_ec_dev structure. However, because the drvdata was already set, sub-drivers like cros_ec_typec can still retrieve the stale pointer via the platform device. This leads to a use-after-free when cros_ec_typec attempts to access &typec->ec->ec->dev on a device that has already been released. Move dev_set_drvdata() to ensure that the pointer is only made available once all initialization steps have succeeded. sysfs: cannot create duplicate filename '/class/chromeos/cros_ec' Call trace: sysfs_do_create_link_sd+0x94/0xdc sysfs_create_link+0x30/0x44 device_add_class_symlinks+0x90/0x13c device_add+0xf0/0x50c ec_device_probe+0x150/0x4f0 platform_probe+0xa0/0xe0...

CVE-2026-64420
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64274] goodix - clamp the device-reported contact count

goodix - clamp the device-reported contact count. Red Hat rates this a security issue. Weakness: CWE-787.

CVE-2026-64274
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64361] fix u32 overflow in check_and_correct_requested_length

fix u32 overflow in check_and_correct_requested_length. Red Hat rates this a security issue. Weakness: CWE-125.

CVE-2026-64361
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64503] fix runtime PM imbalance on write_raw error

fix runtime PM imbalance on write_raw() error. Red Hat rates this a security issue. Weakness: CWE-772.

CVE-2026-64503
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64505] add length check for header

add length check for header. Red Hat rates this a security issue. Weakness: CWE-125.

CVE-2026-64505
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64257] reject overlapping data areas in SMB2 responses

reject overlapping data areas in SMB2 responses. Red Hat rates this a security issue. Weakness: CWE-130.

CVE-2026-64257
Unclassified
Jul 25, 2026
UnratedRed Hat

Advisory [CVE-2026-64445] fix WEP length underflow and OOB read in OnAuth

fix WEP length underflow and OOB read in OnAuth(). Red Hat rates this a security issue. Weakness: CWE-125.

CVE-2026-64445
Unclassified
Jul 25, 2026