52416 matches found
CVE-2026-97446
The Linux kernel contains a NULL pointer dereference vulnerability within the ACPICA component in the acpi_ns_custom_package() function. The flaw occurs because the function unconditionally dereferences the first element of a package to read the _BIX version number without verifying if the refere...
EUVD-2026-86059
In the Linux kernel, the following vulnerability has been resolved: ACPICA: Fix NULL pointer dereference in acpinscustompackage acpinscustompackage unconditionally dereferences the first element of the package to read the BIX version number, without checking for NULL: if Elements-Common.Type !=...
CVE-2026-97439
The Linux kernel 's ntfs3 file system driver is vulnerable to a NULL function pointer dereference when handling a corrupted ntfs3 image. The issue occurs in generic_perform_write() after toggling system.ntfs_attrib and subsequently overwriting system.dos_attrib on the same file. The root cause is...
EUVD-2026-86052
In the Linux kernel, the following vulnerability has been resolved: fs/ntfs3: preserve non-DOS attribute bits in system.dosattrib BUG A corrupted ntfs3 image can hit a NULL function pointer call in genericperformwrite after toggling system.ntfsattrib and then overwriting system.dosattrib on the...
CVE-2026-97431
The Linux kernel contains a vulnerability in the drm/amd/display component. The issue arises because calling dc_update_planes_and_stream separately for a stream and its phantom stream leads to a NULL pointer dereference , as the phantom is destroyed during the first call. The fix involves skippin...
EUVD-2026-86044
In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Avoid DPMS-on for phantom stream Why & How Calling dcupdateplanesandstream separately for stream and its phantom stream causes a NULL pointer dereference, since the phantom is destroyed on the first call. Skip th...
EUVD-2026-86031
In the Linux kernel, the following vulnerability has been resolved: ALSA: es18xx: check control allocation before private data setup sndes18xxmixer creates controls with sndctlnew1 and then stores bookkeeping pointers or sets privatefree before calling sndctladd. sndctlnew1 can return NULL on...
CVE-2026-97418
The Linux kernel contains a vulnerability in the ALSA subsystem's es18xx driver. The function snd_es18xx_mixer() fails to verify if snd_ctl_new1() successfully allocated memory before attempting to store bookkeeping pointers or set private_free. This leads to a NULL pointer dereference if the all...
EUVD-2026-86027
In the Linux kernel, the following vulnerability has been resolved: ASoC: mediatek: mt8365-afe-pcm: fix possible NULL-pointer dereferences in mt8365afesuspend mt8365afesuspend allocates the register backup buffer with devmkcalloc, but does not check for allocation failure before using the returne...
CVE-2026-97414
The Linux kernel contains a vulnerability in the ASoC: mediatek: mt8365-afe-pcm driver. The mt8365_afe_suspend() function allocates a register backup buffer using devm_kcalloc() but fails to verify if the allocation succeeded. This lack of checking can lead to a NULL-pointer dereference when acce...
EUVD-2026-86214
In the Linux kernel, the following vulnerability has been resolved: spi: Add NULL check for spigetdeviceid in spigetdevicematchdata Prevent NULL pointer dereference when spigetdeviceid returns NULL, which can happen when using driveroverride without matching SPI ID entry...
CVE-2026-93825
The Linux kernel contains a vulnerability where a NULL pointer dereference can occur within the spi subsystem. Specifically, the function spi_get_device_match_data() fails to perform a NULL check on the return value of spi_get_device_id(). This issue can be triggered when using driver_override wi...
CVE-2026-93286
The Linux kernel contains a NULL pointer dereference vulnerability in the Appletalk network stack. The aarp_send_ddp() function calls atalk_find_dev_addr(dev) without verifying if the device has an AppleTalk interface configured (i.e., dev->atalk_ptr is NULL). This leads to a crash when access...
EUVD-2026-86165
In the Linux kernel, the following vulnerability has been resolved: net: appletalk: fix NULL pointer dereference in aarpsendddp aarpsendddp calls atalkfinddevaddrdev in the LocalTalk fast path without checking for NULL. When the device has no AppleTalk interface configured dev-atalkptr == NULL,...
EUVD-2026-86146
In the Linux kernel, the following vulnerability has been resolved: pinctrl: bcm2835: Don't remove an unregistered GPIO chip If the devmpinctrlregister function fails, bcm2835pinctrlprobe calls gpiochipremove before gpiochipadddata has registered the GPIO chip. This means that upon failure the...
CVE-2026-93274
A null pointer dereference vulnerability exists in the Linux kernel within the pinctrl: bcm2835 component. The issue occurs when the devm_pinctrl_register() function fails; the bcm2835_pinctrl_probe() function incorrectly calls gpiochip_remove() before gpiochip_add_data() has registered the GPIO ...
CVE-2026-93273
The Linux kernel contains a vulnerability in the tps6594 regulator driver within the tps6594_regulator_probe() function. A multi-phase configuration loop fails to release node references (np, intermediate parent, and np_pmic_parent) via of_node_put(), resulting in a reference leak during each ite...
EUVD-2026-86145
In the Linux kernel, the following vulnerability has been resolved: regulator: tps6594: Fix device node reference leaks in multiphase loop In tps6594regulatorprobe, the multi-phase configuration loop calls offindnodebyname to find buck nodes by name, and ofgetparent twice to navigate to the PMIC...
CVE-2026-93263
The Linux kernel contains a vulnerability where the eswin driver fails to properly initialize stack-allocated clk_init_data structures within the eswin_clk_register_pll() and eswin_register_clkdiv() functions. Because these structures are only partially initialized, leftover stack garbage in unin...
EUVD-2026-86135
In the Linux kernel, the following vulnerability has been resolved: clk: eswin: Zero-initialize stack-allocated clkinitdata eswinclkregisterpll and eswinregisterclkdiv declare a struct clkinitdata on the stack and only initialize some of its fields parentdata respectively parenthws...