Lucene search
+L

8192 matches found

OSV
OSV
added 2025/06/18 11:15 a.m.7 views

UBUNTU-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.5CVSS5.7AI score0.00165EPSS
SaveExploits0References6
OSV
OSV
added 2025/06/18 11:15 a.m.7 views

UBUNTU-CVE-2022-49953

In the Linux kernel, the following vulnerability has been resolved: iio: light: cm3605: Fix an error handling path in cm3605probe The commit in Fixes also introduced a new error handling path which should goto the existing error handling path. Otherwise some resources leak...

5.5CVSS5.7AI score0.00179EPSS
SaveExploits0References4
OSV
OSV
added 2025/06/18 11:15 a.m.11 views

UBUNTU-CVE-2022-50046

In the Linux kernel, the following vulnerability has been resolved: net/sunrpc: fix potential memory leaks in rpcsysfsxprtstatechange The issue happens on some error handling paths. When the function fails to grab the object xprt, it simply returns 0, forgetting to decrease the reference count of...

5.5CVSS6.1AI score0.00164EPSS
SaveExploits0References5
OSV
OSV
added 2025/06/18 11:15 a.m.9 views

UBUNTU-CVE-2022-49998

In the Linux kernel, the following vulnerability has been resolved: rxrpc: Fix locking in rxrpc's sendmsg Fix three bugs in the rxrpc's sendmsg implementation: 1 rxrpcnewclientcall should release the socket lock when returning an error from rxrpcgetcallslot. 2 rxrpcwaitfortxwindowintr will return...

7.8CVSS6.2AI score0.00168EPSS
SaveExploits0References6
OSV
OSV
added 2025/06/18 11:15 a.m.9 views

UBUNTU-CVE-2022-50186

In the Linux kernel, the following vulnerability has been resolved: ath11k: fix missing skb drop on htctxcompletion error On htctxcompletion error the skb is not dropped. This is wrong since the completionhandler logic expect the skb to be consumed anyway even when an error is triggered. Not...

5.5CVSS6AI score0.00214EPSS
SaveExploits0References5
OSV
OSV
added 2025/06/18 11:15 a.m.13 views

UBUNTU-CVE-2022-50053

In the Linux kernel, the following vulnerability has been resolved: iavf: Fix reset error handling Do not call iavfclose in iavfresettask error handling. Doing so can lead to double call of napidisable, which can lead to deadlock there. Removing VF would lead to iavfremove task being stuck, becau...

5.5CVSS6AI score0.00125EPSS
SaveExploits0References5
OSV
OSV
added 2025/06/18 11:15 a.m.7 views

UBUNTU-CVE-2022-49982

In the Linux kernel, the following vulnerability has been resolved: media: pvrusb2: fix memory leak in pvrprobe The error handling code in pvr2hdwcreate forgets to unregister the v4l2 device. When pvr2hdwcreate returns back to pvr2contextcreate, it calls pvr2contextdestroy to destroy context, but...

5.5CVSS6AI score0.00217EPSS
SaveExploits0References10
CVE
CVE
added 2025/06/18 11:04 a.m.109 views

CVE-2022-50229

CVE-2022-50229 is a Linux kernel vulnerability in the ALSA bcd2000 driver. The issue is a use-after-free (UAF) bug that occurs on the error path during probing: when snd_card_register() fails, the driver frees midi_out_urb before it is killed, enabling a UAF condition. The observed log pattern me...

7.8CVSS6.5AI score0.00211EPSS
SaveExploits0References9Affected Software1
OSV
OSV
added 2025/06/18 11:04 a.m.11 views

CVE-2022-50229 ALSA: bcd2000: Fix a UAF bug on the error path of probing

In the Linux kernel, the following vulnerability has been resolved: ALSA: bcd2000: Fix a UAF bug on the error path of probing When the driver fails in sndcardregister at probe time, it will free the 'bcd2k-midiouturb' before killing it, which may cause a UAF bug. The following log can reveal it:...

5.9AI score
SaveExploits0References12
Debian CVE
Debian CVE
added 2025/06/18 11:04 a.m.19 views

CVE-2022-50229

In the Linux kernel, the following vulnerability has been resolved: ALSA: bcd2000: Fix a UAF bug on the error path of probing When the driver fails in sndcardregister at probe time, it will free the 'bcd2k-midiouturb' before killing it, which may cause a UAF bug. The following log can reveal it:...

7.8CVSS5.4AI score0.00211EPSS
SaveExploits0
CVE
CVE
added 2025/06/18 11:03 a.m.81 views

CVE-2022-50199

Mode C: The CVE-2022-50199 issue affects the Linux kernel on ARM (OMAP2+). The root cause is a refcount leak in omapdss_init_of: omapdss_find_dss_of_node() calls of_find_compatible_node() which returns a node with a refcount incremented, but of_node_put() is not always called. The fix adds missin...

5.5CVSS6.4AI score0.00211EPSS
SaveExploits0References6Affected Software1
Cvelist
Cvelist
added 2025/06/18 11:03 a.m.29 views

CVE-2022-50188 drm/meson: Fix refcount leak in meson_encoder_hdmi_init

In the Linux kernel, the following vulnerability has been resolved: drm/meson: Fix refcount leak in mesonencoderhdmiinit offinddevicebynode takes reference, we should use putdevice to release it when not need anymore. Add missing putdevice in error path to avoid refcount leak...

0.0021EPSS
SaveExploits0References4
CVE
CVE
added 2025/06/18 11:03 a.m.86 views

CVE-2022-50187

CVE-2022-50187 involves the ath11k driver netdev open race in the Linux kernel. The issue occurs when ath11k_mac_op_start() runs before mon_reap_timer is set up, leading to a racing open() that can trigger a BUG_ON() in mod_timer(). The fixed advisory notes allocate necessary resources before dev...

4.7CVSS6.3AI score0.00141EPSS
SaveExploits0References5Affected Software1
OSV
OSV
added 2025/06/18 11:03 a.m.13 views

CVE-2022-50186 ath11k: fix missing skb drop on htc_tx_completion error

In the Linux kernel, the following vulnerability has been resolved: ath11k: fix missing skb drop on htctxcompletion error On htctxcompletion error the skb is not dropped. This is wrong since the completionhandler logic expect the skb to be consumed anyway even when an error is triggered. Not...

6AI score
SaveExploits0References6
CVE
CVE
added 2025/06/18 11:03 a.m.30 views

CVE-2022-50170

CVE-2022-50170 concerns a memory-leak in the Linux kernel KunIt testing framework (kunit). Specifically, when allocation for 'filtered' fails during kunit_filter_tests, the copied suite could be leaked. The fix ensures 'copy' is freed in the error path for allocation of 'filtered'. Note that a si...

5.5CVSS6.5AI score0.00208EPSS
SaveExploits0References3Affected Software1
CVE
CVE
added 2025/06/18 11:03 a.m.106 views

CVE-2022-50146

CVE-2022-50146 concerns the Linux kernel PCI-DWC stack. If dw_pcie_ep_init() initializes EPC memory and allocates MSI memory but fails to perform a subsequent action, the MSI region leak is not cleaned up, creating a memory leak. The fix, described in the commit log referenced by multiple advisor...

5.5CVSS6.5AI score0.00165EPSS
SaveExploits0References5Affected Software1
Cvelist
Cvelist
added 2025/06/18 11:03 a.m.19 views

CVE-2022-50143 intel_th: Fix a resource leak in an error handling path

In the Linux kernel, the following vulnerability has been resolved: intelth: Fix a resource leak in an error handling path If an error occurs after calling 'pciallocirqvectors', 'pcifreeirqvectors' must be called as already done in the remove function...

0.00166EPSS
SaveExploits0References6
CVE
CVE
added 2025/06/18 11:03 a.m.83 views

CVE-2022-50143

CVE-2022-50143 : In the Linux kernel intel_th, there is a resource leak path in error handling after pci_alloc_irq_vectors(); pci_free_irq_vectors() must be called as already done in the remove function. The issue, if triggered, affects the kernel’s handling of IRQ vectors and can impact availabi...

5.5CVSS6.4AI score0.00166EPSS
SaveExploits0References6Affected Software1
OSV
OSV
added 2025/06/18 11:03 a.m.15 views

CVE-2022-50143 intel_th: Fix a resource leak in an error handling path

In the Linux kernel, the following vulnerability has been resolved: intelth: Fix a resource leak in an error handling path If an error occurs after calling 'pciallocirqvectors', 'pcifreeirqvectors' must be called as already done in the remove function...

5.9AI score
SaveExploits0References9
Debian CVE
Debian CVE
added 2025/06/18 11:03 a.m.23 views

CVE-2022-50143

In the Linux kernel, the following vulnerability has been resolved: intelth: Fix a resource leak in an error handling path If an error occurs after calling 'pciallocirqvectors', 'pcifreeirqvectors' must be called as already done in the remove function...

5.5CVSS5.3AI score0.00166EPSS
SaveExploits0
Rows per page
Query Builder