Lucene search
+L

57337 matches found

CVE
CVE
•added 2026/04/22 1:54 p.m.•61 views

CVE-2026-31506

The CVE-2026-31506 issue concerns the Linux kernel bcmasp component where the Wake-on-LAN (WoL) IRQ handler could be double-freed. The problem stems from handling of the WoL irq; the patch indicates wol_irq does not need explicit freeing because it is allocated with devm_request_irq, and devres h...

7.8CVSS5.6AI score0.00175EPSS
SaveExploits0References4Affected Software1
Cvelist
Cvelist
•added 2026/04/22 1:54 p.m.•52 views

CVE-2026-31506 net: bcmasp: fix double free of WoL irq

In the Linux kernel, the following vulnerability has been resolved: net: bcmasp: fix double free of WoL irq We do not need to free wolirq since it was instantiated with devmrequestirq. So devres will free for us...

0.00175EPSS
SaveExploits0References4
CVE
CVE
•added 2026/04/22 1:54 p.m.•77 views

CVE-2026-31504

The CVE-2026-31504 entry describes a race in the Linux kernel’s networking stack: during a NETDEV_UP event, a socket re-registration into a fanout group’s arr[] can leave a dangling pointer if packet_release() doesn’t clear po->num while bind_lock is held. This Use-After-Free risk stems from a...

7.8CVSS6.2AI score0.00184EPSS
SaveExploits0References10Affected Software1
CVE
CVE
•added 2026/04/22 1:54 p.m.•38 views

CVE-2026-31502

CVE-2026-31502 : The connected sources detail a Linux kernel vulnerability involving a type confusion in the team network device’s header_ops for non-Ethernet ports. The root cause is that team_setup_by_port() can copy port_dev->header_ops and later callbacks (dev_hard_header/dev_parse_header)...

7.8CVSS5.6AI score0.00175EPSS
SaveExploits0References5Affected Software1
OSV
OSV
•added 2026/04/22 1:54 p.m.•21 views

CVE-2026-31502 team: fix header_ops type confusion with non-Ethernet ports

In the Linux kernel, the following vulnerability has been resolved: team: fix headerops type confusion with non-Ethernet ports Similar to commit 950803f72547 "bonding: fix type confusion in bondsetupbyslave" team has the same class of headerops type confusion. For non-Ethernet ports,...

7.8CVSS5.8AI score
SaveExploits0References8
Cvelist
Cvelist
•added 2026/04/22 1:54 p.m.•48 views

CVE-2026-31502 team: fix header_ops type confusion with non-Ethernet ports

In the Linux kernel, the following vulnerability has been resolved: team: fix headerops type confusion with non-Ethernet ports Similar to commit 950803f72547 "bonding: fix type confusion in bondsetupbyslave" team has the same class of headerops type confusion. For non-Ethernet ports,...

7.8CVSS0.00175EPSS
SaveExploits0References5
CVE
CVE
•added 2026/04/22 1:54 p.m.•49 views

CVE-2026-31489

This CVE (CVE-2026-31489) affects the Linux kernel meson-spicc SPI controller driver. The vulnerability arises from a double-put: meson_spicc_probe() registers the controller with devm_spi_register_controller(), and the removal path erroneously calls spi_controller_put() again in meson_spicc_remo...

7.8CVSS5.6AI score0.00176EPSS
SaveExploits0References8Affected Software1
attackerkb
attackerkb
•added 2026/04/22 1:54 p.m.•11 views

CVE-2026-31489

In the Linux kernel, the following vulnerability has been resolved: spi: meson-spicc: Fix double-put in remove path mesonspiccprobe registers the controller with devmspiregistercontroller, so teardown already drops the controller reference via devm cleanup. Calling spicontrollerput again in...

7.8CVSS5.7AI score0.00176EPSS
SaveExploits0References6Affected Software1
OSV
OSV
•added 2026/04/22 1:54 p.m.•12 views

CVE-2026-31489 spi: meson-spicc: Fix double-put in remove path

In the Linux kernel, the following vulnerability has been resolved: spi: meson-spicc: Fix double-put in remove path mesonspiccprobe registers the controller with devmspiregistercontroller, so teardown already drops the controller reference via devm cleanup. Calling spicontrollerput again in...

5.8AI score
SaveExploits0References11
OSV
OSV
•added 2026/04/22 1:54 p.m.•13 views

CVE-2026-31486 hwmon: (pmbus/core) Protect regulator operations with mutex

In the Linux kernel, the following vulnerability has been resolved: hwmon: pmbus/core Protect regulator operations with mutex The regulator operations pmbusregulatorgetvoltage, pmbusregulatorsetvoltage, and pmbusregulatorlistvoltage access PMBus registers and shared data but were not protected by...

7.1CVSS5.8AI score
SaveExploits0References8
CVE
CVE
•added 2026/04/22 1:54 p.m.•43 views

CVE-2026-31486

The CVE-2026-31486 entry concerns the Linux kernel hwmon/pmbus/core regulator operations (get_voltage, set_voltage, list_voltage) not being mutex-protected, risking race conditions when accessing PMBus registers and shared data. The fix reworks pmbus_regulator_notify() to perform notifications vi...

7.1CVSS5.7AI score0.00132EPSS
SaveExploits0References5Affected Software1
Cvelist
Cvelist
•added 2026/04/22 1:54 p.m.•54 views

CVE-2026-31486 hwmon: (pmbus/core) Protect regulator operations with mutex

In the Linux kernel, the following vulnerability has been resolved: hwmon: pmbus/core Protect regulator operations with mutex The regulator operations pmbusregulatorgetvoltage, pmbusregulatorsetvoltage, and pmbusregulatorlistvoltage access PMBus registers and shared data but were not protected by...

7.1CVSS0.00132EPSS
SaveExploits0References5
CVE
CVE
•added 2026/04/22 1:54 p.m.•44 views

CVE-2026-31475

In CVE-2026-31475, the Linux kernel ASoC sma1307 component had a double-free issue: mode_set entries allocated with devm_kzalloc() were (incorrectly) freed with kfree() in an error path. The remedy documented across multiple sources is to drop the manual kfree() loop and rely on device resource m...

7.8CVSS5.6AI score0.00173EPSS
SaveExploits0References3Affected Software1
OSV
OSV
•added 2026/04/22 1:54 p.m.•14 views

CVE-2026-31475 ASoC: sma1307: fix double free of devm_kzalloc() memory

In the Linux kernel, the following vulnerability has been resolved: ASoC: sma1307: fix double free of devmkzalloc memory A previous change added NULL checks and cleanup for allocation failures in sma1307settingloaded. However, the cleanup for modeset entries is wrong. Those entries are allocated...

7.8CVSS6.5AI score
SaveExploits0References6
CVE
CVE
•added 2026/04/22 1:53 p.m.•40 views

CVE-2026-31440

CVE-2026-31440 affects the Linux kernel’s dmaengine idxd driver. The issue arises during device removal when a reset clears configuration registers, causing the prior check for event log support to fail if evl is no longer valid. The propagated fixes remove the check for “evl” enabled state and i...

5.5CVSS5.6AI score0.00162EPSS
SaveExploits0References5Affected Software1
Cvelist
Cvelist
•added 2026/04/22 1:53 p.m.•58 views

CVE-2026-31440 dmaengine: idxd: Fix leaking event log memory

In the Linux kernel, the following vulnerability has been resolved: dmaengine: idxd: Fix leaking event log memory During the device remove process, the device is reset, causing the configuration registers to go back to their default state, which is zero. As the driver is checking if the event log...

0.00162EPSS
SaveExploits0References5
attackerkb
attackerkb
•added 2026/04/22 1:53 p.m.•12 views

CVE-2026-31440

In the Linux kernel, the following vulnerability has been resolved: dmaengine: idxd: Fix leaking event log memory During the device remove process, the device is reset, causing the configuration registers to go back to their default state, which is zero. As the driver is checking if the event log...

5.5CVSS5.7AI score0.00162EPSS
SaveExploits0References6Affected Software1
OSV
OSV
•added 2026/04/22 1:53 p.m.•13 views

CVE-2026-31440 dmaengine: idxd: Fix leaking event log memory

In the Linux kernel, the following vulnerability has been resolved: dmaengine: idxd: Fix leaking event log memory During the device remove process, the device is reset, causing the configuration registers to go back to their default state, which is zero. As the driver is checking if the event log...

5.8AI score
SaveExploits0References8
CVE
CVE
•added 2026/04/22 1:45 p.m.•42 views

CVE-2026-6862

CVE-2026-6862: A flaw in libefiboot (part of efivar) affects the device path node parser, which does not validate that each node’s Length is at least 4 bytes (EFI node header minimum). A crafted device path node could trigger infinite recursion, stack exhaustion, and a DoS via a process crash. Do...

5.5CVSS5.7AI score0.00166EPSS
SaveExploits0References3Affected Software1
Cvelist
Cvelist
•added 2026/04/22 1:45 p.m.•54 views

CVE-2026-6862 Efivar: efivar: denial of service due to stack overflow in device path node parsing

A flaw was found in libefiboot, a component of efivar. The device path node parser in libefiboot fails to validate that each node's Length field is at least 4 bytes, which is the minimum size for an EFI Extensible Firmware Interface device path node header. A local user could exploit this...

5.5CVSS0.00166EPSS
SaveExploits0References3
Rows per page
Query Builder