Lucene search
+L

601 matches found

OSV
OSV
added 2025/10/22 2:15 p.m.6 views

UBUNTU-CVE-2023-53725

In the Linux kernel, the following vulnerability has been resolved: clocksource/drivers/cadence-ttc: Fix memory leak in ttctimerprobe Smatch reports: drivers/clocksource/timer-cadence-ttc.c:529 ttctimerprobe warn: 'timerbaseaddr' from ofiomap not released on lines: 498,508,516. timerbaseaddr may...

5.9AI score0.00195EPSS
SaveExploits0References11
CVE
CVE
added 2025/10/22 1:23 p.m.25 views

CVE-2023-53725

CVE-2023-53725 affects the Linux kernel Cadence TTC clocksource driver, specifically the ttc_timer_probe path. The vulnerability is described as a memory leak caused by the base IO mapping not being released. The provided fixes replace the non-managed iomap usage with devm_of_iomap() and add clea...

6.1AI score0.00195EPSS
SaveExploits0References8
CVE
CVE
added 2025/10/22 1:23 p.m.24 views

CVE-2023-53719

CVE-2023-53719 is a Linux kernel issue in the arc_uart serial driver where an of_iomap() mapping is leaked in arc_serial_probe() if uart_add_one_port() fails, causing a resource leak. The connected advisories/entries confirm the root cause and the fix: replacing of_iomap with devm_platform_iorema...

6.1AI score0.00201EPSS
SaveExploits0References7
OSV
OSV
added 2025/10/22 1:23 p.m.8 views

CVE-2023-53719 serial: arc_uart: fix of_iomap leak in `arc_serial_probe`

In the Linux kernel, the following vulnerability has been resolved: serial: arcuart: fix ofiomap leak in arcserialprobe Smatch reports: drivers/tty/serial/arcuart.c:631 arcserialprobe warn: 'port-membase' from ofiomap not released on lines: 631. In arcserialprobe, if uartaddoneport fails,...

6.4AI score
SaveExploits0References10
SUSE CVE
SUSE CVE
added 2025/10/08 11:30 p.m.9 views

SUSE CVE-2023-53658

In the Linux kernel, the following vulnerability has been resolved: spi: bcm-qspi: return error if neither hifmspi nor mspi is available If neither a "hifmspi" nor "mspi" resource is present, the driver will just early exit in probe but still return success. Apart from not doing anything...

5.5CVSS6.4AI score0.00141EPSS
SaveExploits0References19
Tenable Nessus
Tenable Nessus
added 2025/10/08 12:0 a.m.3 views

Linux Distros Unpatched Vulnerability : CVE-2023-53533

The Linux/Unix host has one or more packages installed that are impacted by a vulnerability without a vendor supplied patch available. - In the Linux kernel, the following vulnerability has been resolved: Input: raspberrypi-ts - fix refcount leak in rpitsprobe rpifirmwareget take reference, we ne...

5.5CVSS5.2AI score0.00146EPSS
SaveExploits0References2
Tenable Nessus
Tenable Nessus
added 2025/10/08 12:0 a.m.2 views

Linux Distros Unpatched Vulnerability : CVE-2023-53534

The Linux/Unix host has one or more packages installed that are impacted by a vulnerability without a vendor supplied patch available. - In the Linux kernel, the following vulnerability has been resolved: drm/mediatek: mtkdrmcrtc: Add checks for devmkcalloc As the devmkcalloc may return NULL, the...

5.5CVSS5.2AI score0.00145EPSS
SaveExploits0References2
NVD
NVD
added 2025/10/07 4:15 p.m.5 views

CVE-2023-53682

In the Linux kernel, the following vulnerability has been resolved: hwmon: xgene Fix ioremap and memremap leak Smatch reports: drivers/hwmon/xgene-hwmon.c:757 xgenehwmonprobe warn: 'ctx-pcccommaddr' from ioremap not released on line: 757. This is because in drivers/hwmon/xgene-hwmon.c:701...

5.5CVSS0.00133EPSS
SaveExploits0References3
OSV
OSV
added 2025/10/07 4:15 p.m.9 views

AZL-76425 CVE-2023-53682 affecting package kernel 5.15.200.1-1

In the Linux kernel, the following vulnerability has been resolved: hwmon: xgene Fix ioremap and memremap leak Smatch reports: drivers/hwmon/xgene-hwmon.c:757 xgenehwmonprobe warn: 'ctx-pcccommaddr' from ioremap not released on line: 757. This is because in drivers/hwmon/xgene-hwmon.c:701...

5.5CVSS5.6AI score0.00133EPSS
SaveExploits0References1
NVD
NVD
added 2025/10/07 4:15 p.m.9 views

CVE-2023-53658

In the Linux kernel, the following vulnerability has been resolved: spi: bcm-qspi: return error if neither hifmspi nor mspi is available If neither a "hifmspi" nor "mspi" resource is present, the driver will just early exit in probe but still return success. Apart from not doing anything...

5.5CVSS0.00141EPSS
SaveExploits0References8
OSV
OSV
added 2025/10/07 4:15 p.m.5 views

UBUNTU-CVE-2023-53658

In the Linux kernel, the following vulnerability has been resolved: spi: bcm-qspi: return error if neither hifmspi nor mspi is available If neither a "hifmspi" nor "mspi" resource is present, the driver will just early exit in probe but still return success. Apart from not doing anything...

5.5CVSS5.9AI score0.00141EPSS
SaveExploits0References11
OSV
OSV
added 2025/10/07 4:15 p.m.7 views

UBUNTU-CVE-2023-53674

In the Linux kernel, the following vulnerability has been resolved: clk: Fix memory leak in devmclknotifierregister devmclknotifierregister allocates a devres resource for clk notifier but didn't register that to the device, so the notifier didn't get unregistered on device detach and the allocat...

7.8CVSS5.7AI score0.00142EPSS
SaveExploits0References8
CVE
CVE
added 2025/10/07 3:21 p.m.22 views

CVE-2023-53682

CVE-2023-53682 affects the Linux kernel hwmon xgene driver. The root cause is that ioremap() and memremap() were not released in xgene_hwmon_probe(), creating a potential resource leak through ctx->pcc_comm_addr. The fix replaces ioremap and memremap with devm_ioremap and devm_memremap, ensuri...

5.5CVSS6.1AI score0.00133EPSS
SaveExploits0References3Affected Software1
OSV
OSV
added 2025/10/07 3:21 p.m.4 views

CVE-2023-53682 hwmon: (xgene) Fix ioremap and memremap leak

In the Linux kernel, the following vulnerability has been resolved: hwmon: xgene Fix ioremap and memremap leak Smatch reports: drivers/hwmon/xgene-hwmon.c:757 xgenehwmonprobe warn: 'ctx-pcccommaddr' from ioremap not released on line: 757. This is because in drivers/hwmon/xgene-hwmon.c:701...

6.4AI score
SaveExploits0References6
Tenable Nessus
Tenable Nessus
added 2025/10/07 12:0 a.m.4 views

Unity Linux 20.1070e Security Update: kernel (UTSA-2025-986471)

The Unity Linux 20 host has a package installed that is affected by a vulnerability as referenced in the UTSA-2025-986471 advisory. In the Linux kernel, the following vulnerability has been resolved: spi: Fix use-after-free with devmspialloc We can't rely on the contents of the devres list during...

7.8CVSS6.2AI score0.00245EPSS
SaveExploits0References3
Tenable Nessus
Tenable Nessus
added 2025/10/07 12:0 a.m.6 views

Unity Linux 20.1070e Security Update: kernel (UTSA-2025-987345)

The Unity Linux 20 host has a package installed that is affected by a vulnerability as referenced in the UTSA-2025-987345 advisory. In the Linux kernel, the following vulnerability has been resolved: spi: Fix use-after-free with devmspialloc We can't rely on the contents of the devres list during...

7.8CVSS6.2AI score0.00245EPSS
SaveExploits0References4
Tenable Nessus
Tenable Nessus
added 2025/10/07 12:0 a.m.8 views

Unity Linux 20.1070e Security Update: kernel (UTSA-2025-986671)

The Unity Linux 20 host has a package installed that is affected by a vulnerability as referenced in the UTSA-2025-986671 advisory. In the Linux kernel, the following vulnerability has been resolved: firmware: armscpi: Fix string overflow in SCPI genpd driver Without the bound checks for...

7.8CVSS6.2AI score0.0026EPSS
SaveExploits0References4
Tenable Nessus
Tenable Nessus
added 2025/10/07 12:0 a.m.6 views

Unity Linux 20.1070e Security Update: kernel (UTSA-2025-987355)

The Unity Linux 20 host has a package installed that is affected by a vulnerability as referenced in the UTSA-2025-987355 advisory. In the Linux kernel, the following vulnerability has been resolved: HID: elan: Fix potential double free in elaninputconfigured 'input' is a managed resource allocat...

7.8CVSS5.7AI score0.00297EPSS
SaveExploits0References4
Tenable Nessus
Tenable Nessus
added 2025/10/07 12:0 a.m.3 views

Unity Linux 20.1050a / 20.1060a / 20.1070a Security Update: kernel (UTSA-2025-399182)

The Unity Linux 20 host has a package installed that is affected by a vulnerability as referenced in the UTSA-2025-399182 advisory. In the Linux kernel, the following vulnerability has been resolved: gpio: grgpio: Add NULL check in grgpioprobe devmkasprintf can return a NULL pointer on failure,bu...

5.5CVSS6.2AI score0.00255EPSS
SaveExploits0References3
Tenable Nessus
Tenable Nessus
added 2025/10/07 12:0 a.m.2 views

Unity Linux 20.1070a Security Update: kernel (UTSA-2025-384561)

The Unity Linux 20 host has a package installed that is affected by a vulnerability as referenced in the UTSA-2025-384561 advisory. In the Linux kernel, the following vulnerability has been resolved: pinctrl: core: delete incorrect free in pinctrlenable The pctldev struct is allocated in...

7.8CVSS6.1AI score0.00247EPSS
SaveExploits0References3
Rows per page
Query Builder