Lucene search
+L

13118 matches found

NVD
NVD
added 2025/06/18 11:15 a.m.10 views

CVE-2022-50145

In the Linux kernel, the following vulnerability has been resolved: dmaengine: sf-pdma: Add multithread support for a DMA channel When we get a DMA channel and try to use it in multiple threads it will cause oops and hanging the system. % echo 64 /sys/module/dmatest/parameters/threadsperchan % ec...

7.8CVSS0.00174EPSS
SaveExploits0References5
NVD
NVD
added 2025/06/18 11:15 a.m.15 views

CVE-2022-50148

In the Linux kernel, the following vulnerability has been resolved: kernfs: fix potential NULL dereference in kernfsremove When lockdep is enabled, lockdepassertheldwrite would cause potential NULL pointer dereference. Fix the following smatch warnings: fs/kernfs/dir.c:1353 kernfsremove warn:...

5.5CVSS0.00164EPSS
SaveExploits0References3
NVD
NVD
added 2025/06/18 11:15 a.m.14 views

CVE-2022-50132

In the Linux kernel, the following vulnerability has been resolved: usb: cdns3: change place of 'privep' assignment in cdns3gadgetepdequeue, cdns3gadgetepenable If 'ep' is NULL, result of eptocdns3epep is invalid pointer and its dereference with privep-cdns3dev may cause panic. Found by Linux...

5.5CVSS0.00165EPSS
SaveExploits0References5
NVD
NVD
added 2025/06/18 11:15 a.m.15 views

CVE-2022-50139

In the Linux kernel, the following vulnerability has been resolved: usb: aspeed-vhub: Fix refcount leak bug in astvhubinitdesc We should call ofnodeput for the reference returned by ofgetchildbyname which has increased the refcount...

5.5CVSS0.00165EPSS
SaveExploits0References5
NVD
NVD
added 2025/06/18 11:15 a.m.17 views

CVE-2022-50135

In the Linux kernel, the following vulnerability has been resolved: RDMA/rxe: Fix BUG: KASAN: null-ptr-deref in rxeqpdocleanup The function rxecreateqp calls rxeqpfrominit. If some error occurs, the error handler of function rxeqpfrominit will set both scq and rcq to NULL. Then rxecreateqp calls...

5.5CVSS0.00179EPSS
SaveExploits0References2
NVD
NVD
added 2025/06/18 11:15 a.m.10 views

CVE-2022-50138

In the Linux kernel, the following vulnerability has been resolved: RDMA/qedr: Fix potential memory leak in qedrallocmr qedrallocmr allocates a memory chunk for "mr-info.pbltable" with initmrinfo. When rdmaalloctid and rdmaregistertid fail, "mr" is released while "mr-info.pbltable" is not release...

5.5CVSS0.00216EPSS
SaveExploits0References5
NVD
NVD
added 2025/06/18 11:15 a.m.19 views

CVE-2022-50140

In the Linux kernel, the following vulnerability has been resolved: memstick/msblock: Fix a memory leak 'erasedblocksbitmap' is never freed. As it is allocated at the same time as 'usedblocksbitmap', it is likely that it should be freed also at the same time. Add the corresponding bitmapfree in...

5.5CVSS0.00166EPSS
SaveExploits0References8
NVD
NVD
added 2025/06/18 11:15 a.m.16 views

CVE-2022-50133

In the Linux kernel, the following vulnerability has been resolved: usb: xhciplatremove: avoid NULL dereference Since commit 4736ebd7fcaff1eb8481c140ba494962847d6e0a "usb: host: xhci-plat: omit shared hcd if either root hub has no ports" xhci-sharedhcd can be NULL, which causes the following Oops...

5.5CVSS0.00179EPSS
SaveExploits0References2
NVD
NVD
added 2025/06/18 11:15 a.m.15 views

CVE-2022-50136

In the Linux kernel, the following vulnerability has been resolved: RDMA/siw: Fix duplicated reported IWCMEVENTCONNECTREPLY event If siwrecvmparr returns -EAGAIN, it means that the MPA reply hasn't been received completely, and should not report IWCMEVENTCONNECTREPLY in this case. This may trigge...

7.5CVSS0.00533EPSS
SaveExploits0References6
NVD
NVD
added 2025/06/18 11:15 a.m.16 views

CVE-2022-50131

In the Linux kernel, the following vulnerability has been resolved: HID: mcp2221: prevent a buffer overflow in mcpsmbuswrite Smatch Warning: drivers/hid/hid-mcp2221.c:388 mcpsmbuswrite error: memcpy '&mcp-txbuf5' too small 59 vs 255 drivers/hid/hid-mcp2221.c:388 mcpsmbuswrite error: memcpy 'buf'...

7.8CVSS0.00194EPSS
SaveExploits0References5
NVD
NVD
added 2025/06/18 11:15 a.m.23 views

CVE-2022-50124

In the Linux kernel, the following vulnerability has been resolved: ASoC: mt6797-mt6351: Fix refcount leak in mt6797mt6351devprobe ofparsephandle returns a node pointer with refcount incremented, we should use ofnodeput on it when not need anymore. Add missing ofnodeput to avoid refcount leak...

5.5CVSS0.00166EPSS
SaveExploits0References7
NVD
NVD
added 2025/06/18 11:15 a.m.12 views

CVE-2022-50130

In the Linux kernel, the following vulnerability has been resolved: staging: fbtft: core: set smemlen before fbdeferredioinit call The fbtftframebufferalloc calls fbdeferredioinit before initializing info-fix.smemlen. It is set to zero by the framebufferalloc function. It will trigger a WARNON at...

5.5CVSS0.00165EPSS
SaveExploits0References4
NVD
NVD
added 2025/06/18 11:15 a.m.14 views

CVE-2022-50123

In the Linux kernel, the following vulnerability has been resolved: ASoC: mediatek: mt8173: Fix refcount leak in mt8173rt5650rt5676devprobe ofparsephandle returns a node pointer with refcount incremented, we should use ofnodeput on it when not need anymore. Fix missing ofnodeput in error paths...

5.5CVSS0.00166EPSS
SaveExploits0References8
NVD
NVD
added 2025/06/18 11:15 a.m.21 views

CVE-2022-50127

In the Linux kernel, the following vulnerability has been resolved: RDMA/rxe: Fix error unwind in rxecreateqp In the function rxecreateqp, rxeqpfrominit is called to initialize qp, internally things like the spin locks are not setup until rxeqpinitreq. If an error occures before this point then t...

5.5CVSS0.00166EPSS
SaveExploits0References8
NVD
NVD
added 2025/06/18 11:15 a.m.16 views

CVE-2022-50116

In the Linux kernel, the following vulnerability has been resolved: tty: ngsm: fix deadlock and link starvation in outgoing data path The current implementation queues up new control and user packets as needed and processes this queue down to the ldisc in the same code path. That means that the...

5.5CVSS0.00126EPSS
SaveExploits0References4
NVD
NVD
added 2025/06/18 11:15 a.m.14 views

CVE-2022-50121

In the Linux kernel, the following vulnerability has been resolved: remoteproc: k3-r5: Fix refcount leak in k3r5clusterofinit Every iteration of foreachavailablechildofnode decrements the reference count of the previous node. When breaking early from a foreachavailablechildofnode loop, we need to...

5.5CVSS0.00165EPSS
SaveExploits0References5
NVD
NVD
added 2025/06/18 11:15 a.m.17 views

CVE-2022-50119

In the Linux kernel, the following vulnerability has been resolved: rpmsg: Fix possible refcount leak in rpmsgregisterdeviceoverride rpmsgregisterdeviceoverride need to call putdevice to free vch when driversetoverride fails. Fix this by adding a putdevice to the error path...

5.5CVSS0.00166EPSS
SaveExploits0References7
NVD
NVD
added 2025/06/18 11:15 a.m.9 views

CVE-2022-50114

In the Linux kernel, the following vulnerability has been resolved: net: 9p: fix refcount leak in p9readwork error handling p9reqput need to be called when m-rreq-rc.sdata is NULL to avoid temporary refcount leak. Dominique: commit wording adjustments, p9reqput argument fixes for rebase...

5.5CVSS0.00165EPSS
SaveExploits0References5
NVD
NVD
added 2025/06/18 11:15 a.m.15 views

CVE-2022-50106

In the Linux kernel, the following vulnerability has been resolved: powerpc/cell/axonmsi: Fix refcount leak in setupmsimsgaddress ofgetnextparent returns a node pointer with refcount incremented, we should use ofnodeput on it when not need anymore. Add missing ofnodeput in the error path to avoid...

5.5CVSS0.00169EPSS
SaveExploits0References8
NVD
NVD
added 2025/06/18 11:15 a.m.13 views

CVE-2022-50113

In the Linux kernel, the following vulnerability has been resolved: ASoc: audio-graph-card2: Fix refcount leak bug in graphgettype We should call ofnodeput for the reference before its replacement as it returned by ofgetparent which has increased the refcount. Besides, we should also call ofnodep...

5.5CVSS0.00208EPSS
SaveExploits0References3
Rows per page
Query Builder