Lucene search
+L

23308 matches found

OSV
OSV
added 2025/12/30 1:16 p.m.15 views

UBUNTU-CVE-2023-54319

In the Linux kernel, the following vulnerability has been resolved: pinctrl: at91-pio4: check return value of devmkasprintf devmkasprintf returns a pointer to dynamically allocated memory. Pointer could be NULL in case allocation fails. Check pointer validity. Identified with coccinelle kmerr.coc...

5.7AI score0.00189EPSS
SaveExploits0References12
NVD
NVD
added 2025/12/30 1:15 p.m.8 views

CVE-2022-50831

Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority...

SaveExploits0
Cvelist
Cvelist
added 2025/12/30 12:34 p.m.34 views

CVE-2023-54319 pinctrl: at91-pio4: check return value of devm_kasprintf()

In the Linux kernel, the following vulnerability has been resolved: pinctrl: at91-pio4: check return value of devmkasprintf devmkasprintf returns a pointer to dynamically allocated memory. Pointer could be NULL in case allocation fails. Check pointer validity. Identified with coccinelle kmerr.coc...

0.00189EPSS
SaveExploits0References9
CVE
CVE
added 2025/12/30 12:34 p.m.26 views

CVE-2023-54319

CVE-2023-54319: In the Linux kernel pinctrl/at91-pio4, code did not validate the return value of devm_kasprintf(); since devm_kasprintf() can return NULL on allocation failure, lack of a NULL check could lead to use-after-free or leaks. The vulnerability has been addressed by adding a pointer val...

6AI score0.00189EPSS
SaveExploits0References9
OSV
OSV
added 2025/12/30 12:34 p.m.8 views

CVE-2023-54319 pinctrl: at91-pio4: check return value of devm_kasprintf()

In the Linux kernel, the following vulnerability has been resolved: pinctrl: at91-pio4: check return value of devmkasprintf devmkasprintf returns a pointer to dynamically allocated memory. Pointer could be NULL in case allocation fails. Check pointer validity. Identified with coccinelle kmerr.coc...

6.3AI score
SaveExploits0References12
Cvelist
Cvelist
added 2025/12/30 12:23 p.m.32 views

CVE-2023-54298 thermal: intel: quark_dts: fix error pointer dereference

In the Linux kernel, the following vulnerability has been resolved: thermal: intel: quarkdts: fix error pointer dereference If allocsocdts fails, then we can just return. Trying to free "socdts" will lead to an Oops...

0.00183EPSS
SaveExploits0References8
Cvelist
Cvelist
added 2025/12/30 12:15 p.m.31 views

CVE-2023-54268 debugobjects: Don't wake up kswapd from fill_pool()

In the Linux kernel, the following vulnerability has been resolved: debugobjects: Don't wake up kswapd from fillpool syzbot is reporting a lockdep warning in fillpool because the allocation from debugobjects is using GFPATOMIC, which is GFPHIGH | GFPKSWAPDRECLAIM and therefore tries to wake up...

0.00179EPSS
SaveExploits0References6
CVE
CVE
added 2025/12/30 12:15 p.m.28 views

CVE-2023-54268

The CVE-2023-54268 entry concerns a Linux kernel fix for debugobjects: avoid waking kswapd from fill_pool() when GFP_ATOMIC allocations trigger kswapd_wait::lock. The root cause is using GFP_ATOMIC (effectively GFP_HIGH | GFP_KSWAPD_RECLAIM), which can wake up kswapd during fill_pool() as it may ...

6.2AI score0.00179EPSS
SaveExploits0References6
OSV
OSV
added 2025/12/30 12:15 p.m.7 views

CVE-2023-54268 debugobjects: Don't wake up kswapd from fill_pool()

In the Linux kernel, the following vulnerability has been resolved: debugobjects: Don't wake up kswapd from fillpool syzbot is reporting a lockdep warning in fillpool because the allocation from debugobjects is using GFPATOMIC, which is GFPHIGH | GFPKSWAPDRECLAIM and therefore tries to wake up...

6.5AI score
SaveExploits0References9
Debian CVE
Debian CVE
added 2025/12/30 12:15 p.m.7 views

CVE-2023-54260

In the Linux kernel, the following vulnerability has been resolved: cifs: Fix lost destroy smbd connection when MR allocate failed If the MR allocate failed, the smb direct connection info is NULL, then smbddestroy will directly return, then the connection info will be leaked. Let's set the smb...

5.3AI score0.00179EPSS
SaveExploits0
Cvelist
Cvelist
added 2025/12/30 12:15 p.m.26 views

CVE-2023-54260 cifs: Fix lost destroy smbd connection when MR allocate failed

In the Linux kernel, the following vulnerability has been resolved: cifs: Fix lost destroy smbd connection when MR allocate failed If the MR allocate failed, the smb direct connection info is NULL, then smbddestroy will directly return, then the connection info will be leaked. Let's set the smb...

0.00179EPSS
SaveExploits0References7
CVE
CVE
added 2025/12/30 12:15 p.m.23 views

CVE-2023-54260

CVE-2023-54260 — Linux kernel (CIFS): The vulnerability occurs when MR allocation fails during CIFS SMB direct connection handling; if the MR allocate fails and the smb direct connection info is NULL, smbd_destroy() returns early and leaks the connection info. The fix updates the shutdown path by...

6.1AI score0.00179EPSS
SaveExploits0References7
OSV
OSV
added 2025/12/30 12:15 p.m.18 views

CVE-2023-54260 cifs: Fix lost destroy smbd connection when MR allocate failed

In the Linux kernel, the following vulnerability has been resolved: cifs: Fix lost destroy smbd connection when MR allocate failed If the MR allocate failed, the smb direct connection info is NULL, then smbddestroy will directly return, then the connection info will be leaked. Let's set the smb...

6.4AI score
SaveExploits0References10
Cvelist
Cvelist
added 2025/12/30 12:15 p.m.37 views

CVE-2022-50867 drm/msm/a6xx: Fix kvzalloc vs state_kcalloc usage

In the Linux kernel, the following vulnerability has been resolved: drm/msm/a6xx: Fix kvzalloc vs statekcalloc usage adrenoshowobject is a trap! It will re-allocate the pointer it is passed on first call, when the data is ascii85 encoded, using kvmalloc/ kvfree. Which means the data passed to it...

7.8CVSS0.00126EPSS
SaveExploits0References2
Debian CVE
Debian CVE
added 2025/12/30 12:15 p.m.18 views

CVE-2022-50867

In the Linux kernel, the following vulnerability has been resolved: drm/msm/a6xx: Fix kvzalloc vs statekcalloc usage adrenoshowobject is a trap! It will re-allocate the pointer it is passed on first call, when the data is ascii85 encoded, using kvmalloc/ kvfree. Which means the data passed to it...

7.8CVSS5.2AI score0.00126EPSS
SaveExploits0
CVE
CVE
added 2025/12/30 12:15 p.m.24 views

CVE-2022-50867

CVE-2022-50867 : In the Linux kernel, the drm/msm/a6xx path fixes improper kvzalloc usage vs state_kcalloc. The adreno_show_object() path reallocates the passed data on first call (ascii85-encoded) using kvmalloc/kvfree, so the data must be kvmalloc’d and state_kcalloc cannot be used. The change ...

7.8CVSS6AI score0.00126EPSS
SaveExploits0References2
CVE
CVE
added 2025/12/30 12:15 p.m.25 views

CVE-2022-50866

CVE-2022-50866 relates to the Linux kernel ASoC: pxa driver, where a null-pointer dereference could occur in the filter() path due to kasprintf() returning NULL when kmalloc() fails. The public fixes require checking the allocation return before using strcmp(), effectively preventing potential cr...

6.1AI score0.00203EPSS
SaveExploits0References9
OSV
OSV
added 2025/12/30 12:15 p.m.9 views

CVE-2022-50866 ASoC: pxa: fix null-pointer dereference in filter()

In the Linux kernel, the following vulnerability has been resolved: ASoC: pxa: fix null-pointer dereference in filter kasprintf would return NULL pointer when kmalloc fail to allocate. Need to check the return pointer before calling strcmp...

6.4AI score
SaveExploits0References12
CVE
CVE
added 2025/12/30 12:15 p.m.31 views

CVE-2022-50858

The CVE-2022-50858 entry concerns the Linux kernel mmc alcor driver. The vulnerability arises when mmc_add_host() returns an error but its return value is not checked, risking a memory leak from allocations in mmc_alloc_host() and potentially causing a kernel crash on removing an unadded device. ...

6.1AI score0.00214EPSS
SaveExploits0References6
OSV
OSV
added 2025/12/30 12:11 p.m.9 views

CVE-2023-54231 net: libwx: fix memory leak in wx_setup_rx_resources

In the Linux kernel, the following vulnerability has been resolved: net: libwx: fix memory leak in wxsetuprxresources When wxallocpagepool failed in wxsetuprxresources, it doesn't release DMA buffer. Add dmafreecoherent in the error path to release the DMA buffer...

6.4AI score
SaveExploits0References5
Rows per page
Query Builder