Lucene search
+L

8097 matches found

Cvelist
Cvelist
added 2026/05/27 12:17 p.m.51 views

CVE-2026-45939 gpib: Fix memory leak in ni_usb_init()

In the Linux kernel, the following vulnerability has been resolved: gpib: Fix memory leak in niusbinit In niusbinit, if niusbsetupinit fails, the function returns -EFAULT without freeing the allocated writes buffer, leading to a memory leak. Additionally, niusbsetupinit returns 0 on failure, whic...

0.00121EPSS
SaveExploits0References3
Cvelist
Cvelist
added 2026/05/27 12:17 p.m.48 views

CVE-2026-45921 mtd: parsers: Fix memory leak in mtd_parser_tplink_safeloader_parse()

In the Linux kernel, the following vulnerability has been resolved: mtd: parsers: Fix memory leak in mtdparsertplinksafeloaderparse The function mtdparsertplinksafeloaderparse allocates buf via mtdparsertplinksafeloaderreadtable. If the allocation for partsidx.name fails inside the loop, the code...

0.00122EPSS
SaveExploits0References5
OSV
OSV
added 2026/05/27 12:17 p.m.10 views

CVE-2026-45921 mtd: parsers: Fix memory leak in mtd_parser_tplink_safeloader_parse()

In the Linux kernel, the following vulnerability has been resolved: mtd: parsers: Fix memory leak in mtdparsertplinksafeloaderparse The function mtdparsertplinksafeloaderparse allocates buf via mtdparsertplinksafeloaderreadtable. If the allocation for partsidx.name fails inside the loop, the code...

6AI score
SaveExploits0References8
CVE
CVE
added 2026/05/27 12:17 p.m.32 views

CVE-2026-45921

CVE-2026-45921 affects the Linux kernel’s mtd: parsers component, specifically the function mtd_parser_tplink_safeloader_parse(). The issue arises when buf allocated by mtd_parser_tplink_safeloader_read_table() is not freed if parts[idx].name allocation fails inside the loop, causing a memory lea...

5.5CVSS5.9AI score0.00122EPSS
SaveExploits0References5Affected Software1
Debian CVE
Debian CVE
added 2026/05/27 12:17 p.m.23 views

CVE-2026-45904

In the Linux kernel, the following vulnerability has been resolved: powerpc/eeh: fix recursive pcilockrescanremove locking in EEH event handling The recent commit 1010b4c012b0 "powerpc/eeh: Make EEH driver device hotplug safe" restructured the EEH driver to improve synchronization with the PCI...

5.5CVSS5.7AI score0.00156EPSS
SaveExploits0
Cvelist
Cvelist
added 2026/05/27 12:17 p.m.54 views

CVE-2026-45899 ext4: drop extent cache when splitting extent fails

In the Linux kernel, the following vulnerability has been resolved: ext4: drop extent cache when splitting extent fails When the split extent fails, we might leave some extents still being processed and return an error directly, which will result in stale extent entries remaining in the extent...

0.0016EPSS
SaveExploits0References7
Cvelist
Cvelist
added 2026/05/27 12:16 p.m.50 views

CVE-2026-45888 md/raid1: fix memory leak in raid1_run()

In the Linux kernel, the following vulnerability has been resolved: md/raid1: fix memory leak in raid1run raid1run calls setupconf which registers a thread via mdregisterthread. If raid1setlimits fails, the previously registered thread is not unregistered, resulting in a memory leak of the mdthre...

0.00159EPSS
SaveExploits0References4
CVE
CVE
added 2026/05/27 12:16 p.m.33 views

CVE-2026-45888

In the Linux kernel md/raid1 subsystem, CVE-2026-45888 describes a memory leak in raid1_run(): when setup_conf() registers a thread via md_register_thread(), a subsequent failure in raid1_set_limits() may leave the thread registered, leaking the md_thread structure and the thread resource. The fi...

5.5CVSS5.8AI score0.00159EPSS
SaveExploits0References4Affected Software1
CVE
CVE
added 2026/05/27 12:16 p.m.38 views

CVE-2026-45876

CVE-2026-45876 affects the Linux kernel (arm64 architecture) in the arch_set_shadow_stack_status flow. The bug arises from error handling in alloc_gcs(), which can return an error-encoded pointer from do_mmap() instead of NULL. A NULL-based check fails to detect these errors, risking use of an in...

5.5CVSS5.8AI score0.00153EPSS
SaveExploits0References3Affected Software1
Cvelist
Cvelist
added 2026/05/27 12:16 p.m.52 views

CVE-2026-45876 arm64/gcs: Fix error handling in arch_set_shadow_stack_status()

In the Linux kernel, the following vulnerability has been resolved: arm64/gcs: Fix error handling in archsetshadowstackstatus allocgcs returns an error-encoded pointer on failure, which comes from dommap, not NULL. The current NULL check fails to detect errors, which could lead to using an invali...

0.00153EPSS
SaveExploits0References3
Debian CVE
Debian CVE
added 2026/05/27 12:16 p.m.36 views

CVE-2026-45876

In the Linux kernel, the following vulnerability has been resolved: arm64/gcs: Fix error handling in archsetshadowstackstatus allocgcs returns an error-encoded pointer on failure, which comes from dommap, not NULL. The current NULL check fails to detect errors, which could lead to using an invali...

5.5CVSS5.7AI score0.00153EPSS
SaveExploits0
OSV
OSV
added 2026/05/27 12:15 p.m.17 views

CVE-2026-45875 mfd: arizona: Fix regulator resource leak on wm5102_clear_write_sequencer() failure

In the Linux kernel, the following vulnerability has been resolved: mfd: arizona: Fix regulator resource leak on wm5102clearwritesequencer failure The wm5102clearwritesequencer helper may return an error and just return, bypassing the cleanup sequence and causing regulators to remain enabled,...

5.9AI score
SaveExploits0References11
OSV
OSV
added 2026/05/27 12:15 p.m.8 views

CVE-2026-45872 scsi: smartpqi: Fix memory leak in pqi_report_phys_luns()

In the Linux kernel, the following vulnerability has been resolved: scsi: smartpqi: Fix memory leak in pqireportphysluns pqireportphysluns fails to release the rpllist buffer when encountering an unsupported data format or when the allocation for rpl16bytewwidlist fails. These early returns bypas...

6AI score
SaveExploits0References9
CVE
CVE
added 2026/05/27 12:15 p.m.41 views

CVE-2026-45872

The CVE-2026-45872 issue affects Linux kernel SCSI smartpqi: pqi_report_phys_luns() where the rpl_list buffer could leak if an unsupported data format is encountered or rpl_16byte_wwid_list allocation fails. The root cause is early returns bypassing cleanup logic. The fix consolidates error handl...

5.5CVSS5.9AI score0.00166EPSS
SaveExploits0References6Affected Software1
CVE
CVE
added 2026/05/27 12:15 p.m.31 views

CVE-2026-45863

Summary: CVE-2026-45863 relates to the Linux kernel i3c dw driver, where dw_i3c_master_i2c_xfers() leaks memory when pm_runtime_resume_and_get() fails. The root cause is allocating the xfer structure via dw_i3c_master_alloc_xfer() without freeing on the error path. Consequence: memory leak potent...

5.5CVSS5.8AI score0.00155EPSS
SaveExploits0References4Affected Software1
Cvelist
Cvelist
added 2026/05/27 12:15 p.m.49 views

CVE-2026-45857 scsi: csiostor: Fix dereference of null pointer rn

In the Linux kernel, the following vulnerability has been resolved: scsi: csiostor: Fix dereference of null pointer rn The error exit path when rn is NULL ends up deferencing the null pointer rn via the use of the macro CSIOINCSTATS. Fix this by adding a new error return path label after the use ...

0.0016EPSS
SaveExploits0References8
OSV
OSV
added 2026/05/27 12:15 p.m.8 views

CVE-2025-71308 accel/amdxdna: Fix potential NULL pointer dereference in context cleanup

In the Linux kernel, the following vulnerability has been resolved: accel/amdxdna: Fix potential NULL pointer dereference in context cleanup aiedestroycontext is invoked during error handling in aie2createcontext. However, aiedestroycontext assumes that the context's mailbox channel pointer is...

5.8AI score
SaveExploits0References5
Positive Technologies
Positive Technologies
added 2026/05/27 12:0 a.m.35 views

PT-2026-43739

Name of the Vulnerable Software and Affected Versions Linux kernel affected versions not specified Description A memory leak occurs in the pqi report phys luns function. The issue arises when the function encounters an unsupported data format or when the allocation for the rpl 16byte wwid list...

5.5CVSS5.6AI score0.00166EPSS
SaveExploits0
UbuntuCve
UbuntuCve
added 2026/05/27 12:0 a.m.24 views

CVE-2026-45904

In the Linux kernel, the following vulnerability has been resolved: powerpc/eeh: fix recursive pcilockrescanremove locking in EEH event handling The recent commit 1010b4c012b0 "powerpc/eeh: Make EEH driver device hotplug safe" restructured the EEH driver to improve synchronization with the PCI...

5.5CVSS5.8AI score0.00156EPSS
SaveExploits0References25
Positive Technologies
Positive Technologies
added 2026/05/27 12:0 a.m.27 views

PT-2026-43671

Name of the Vulnerable Software and Affected Versions Linux kernel affected versions not specified Description A use-after-free issue exists in the arena vm close function during a fork operation. The arena vm open function increments the vml-mmap count but fails to register the child Virtual...

7.8CVSS5.9AI score0.00116EPSS
SaveExploits0
Rows per page
Query Builder