531653 matches found
CVE-2026-97970
The Linux kernel contains a vulnerability within the watchdog: msc313e component where the clk_get_rate() function could return 0, potentially leading to a division by zero panic . This issue has been resolved in the kernel to prevent system instability. No specific exploit information or exploit...
CVE-2026-97969
The Linux kernel contains a vulnerability in the msc313e watchdog driver. The function msc313e_wdt_settimeout() unconditionally calls msc313e_wdt_start(), leading to two issues: a clock reference count imbalance when the watchdog is already active (causing a clock leak) and the accidental startin...
EUVD-2026-86823
In the Linux kernel, the following vulnerability has been resolved: watchdog: msc313e: Fix clock leak and spurious timer in settimeout msc313ewdtsettimeout unconditionally calls msc313ewdtstart which introduces two severe bugs: 1. If the watchdog is already active, calling start again will increa...
EUVD-2026-86824
In the Linux kernel, the following vulnerability has been resolved: watchdog: msc313e: Avoid division by zero clkgetrate could return 0. Avoid a division by zero panic...
CVE-2026-97968
A vulnerability exists in the Linux kernel within the hwmon (corsair-cpro) driver. The ccp_debugfs_init() function incorrectly registers debugfs files before the hwmon_device_register_with_info() call. If registration fails, the HID core frees the allocated ccp data, but the debugfs entries remai...
EUVD-2026-86822
In the Linux kernel, the following vulnerability has been resolved: hwmon: corsair-cpro Create debugfs entries after hwmon registration ccpdebugfsinit registers debugfs files whose private data is the devm allocated ccp. It runs before hwmondeviceregisterwithinfo, so when that registration fails,...
CVE-2026-97967
The Linux kernel contains a vulnerability in the hwmon (corsair-cpro) driver. When hwmon_device_register_with_info() fails immediately after ccp_debugfs_init() registers files, the ccp_probe() function returns without removing those debugfs entries. Because the HID core then frees the ccp structu...
EUVD-2026-86821
In the Linux kernel, the following vulnerability has been resolved: hwmon: corsair-cpro Remove debugfs entries when probe fails ccpdebugfsinit registers debugfs files whose private data is the devm allocated ccp. If hwmondeviceregisterwithinfo fails right after it, ccpprobe returns without removi...
CVE-2026-97966
The Linux kernel contains a vulnerability in the octeontx2-pf driver where HTB offload programs (NIX_AF_TLxX_TOPOLOGY) are set on QoS-allocated scheduler queues, but these queues are freed during teardown without clearing the TOPOLOGY settings. Consequently, PRIO_ANCHOR and RR_PRIO settings can p...
EUVD-2026-86820
In the Linux kernel, the following vulnerability has been resolved: octeontx2-pf: reset HTB scheduler topology before freeing queues HTB offload programs NIXAFTLxXTOPOLOGY on QoS-allocated scheduler queues via otx2qostxschqsetparenttopology, but teardown freed those queues without clearing...
CVE-2026-97964
The Linux kernel contains a vulnerability in the ppp_synctty component where the ppp_sync_txmunge() function fails to ensure the skb header is writable before prepending address and control bytes. This issue occurs because received skbs can reach this function through PPP channel bridging without...
CVE-2026-97965
The Linux kernel contains a vulnerability in the vxlan component where a packet transmitted through a device configured with VXLAN_F_COLLECT_METADATA and VXLAN_F_GBP can cause information leakage. If the external ip_tunnel_info lacks the IP_TUNNEL_VXLAN_OPT_BIT flag, the md pointer remains pointi...
EUVD-2026-86818
In the Linux kernel, the following vulnerability has been resolved: pppsynctty: ensure a writeable skb header pppsynctxmunge checks headroom before prepending the address and control bytes, but does not ensure that the skb header is writable. A received skb can reach this function through PPP...
EUVD-2026-86819
In the Linux kernel, the following vulnerability has been resolved: vxlan: initialize md in vxlanxmitone If a VXLAN device is configured with both VXLANFCOLLECTMETADATA and VXLANFGBP, and a packet is transmitted through it using an external iptunnelinfo that lacks the IPTUNNELVXLANOPTBIT flag, md...
CVE-2026-97963
The Linux kernel contains a vulnerability in the stmmac driver where the ptp_lock (an rwlock) is only initialized during __stmmac_open(). Because the lock is accessed by stmmac_get_time() during tc_taprio_configure() even when the interface is down and never opened, using the uninitialized lock r...
CVE-2026-97962
The Linux kernel contains a vulnerability in the net/mlx5e driver where the representor vnic devlink health reporter is created and destroyed along a path not serialized by the devlink instance lock. This lack of serialization triggers a devl_assert_locked() splat during driver unbind. The issue ...
EUVD-2026-86816
In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: Move representor vnic reporter to eswitch devlink port The representor vnic devlink health reporter is created and destroyed along the representor netdev unload path, which is not serialized by the devlink instance loc...
EUVD-2026-86817
In the Linux kernel, the following vulnerability has been resolved: net: stmmac: initialize ptplock at probe time priv-ptplock is only initialized in stmmacptpregister, which runs during stmmacopen. However, the lock is also used while the interface is down and has never been opened:...
CVE-2026-97961
The Linux kernel contains a vulnerability in the perf/core subsystem where a list corruption can occur. The issue arises because the function perf_sched_cb_dec() may attempt to remove an entry from the sched_cb_list while that list node is still in use by perf_pmu_sched_task(). This specific path...
EUVD-2026-86815
In the Linux kernel, the following vulnerability has been resolved: perf/core: Allow listdel during perfeventoverflow A PMU might use perfschedcbinc and perfschedcbdec interface to get the PMU call back function pmu::schedtask invoked at schedule in and schedule out. This is achieved by walking...