Lucene search
+L

23603 matches found

Debian CVE
Debian CVE
added 2025/06/18 11:03 a.m.19 views

CVE-2022-50209

In the Linux kernel, the following vulnerability has been resolved: meson-mx-socinfo: Fix refcount leak in mesonmxsocinfoinit offindmatchingnode 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.5CVSS5.3AI score0.0023EPSS
SaveExploits0
CVE
CVE
added 2025/06/18 11:03 a.m.89 views

CVE-2022-50207

Summary (CVE-2022-50207) : In the Linux kernel, ARM bcm Kona handling had a refcount leak in bcm_kona_smc_init. The root cause: of_find_matching_node() returns a node pointer with an incremented refcount and may not be released. The patch adds a missing of_node_put() to drop the reference when th...

5.5CVSS6.4AI score0.00247EPSS
SaveExploits0References8Affected Software1
Debian CVE
Debian CVE
added 2025/06/18 11:03 a.m.8 views

CVE-2022-50202

In the Linux kernel, the following vulnerability has been resolved: PM: hibernate: defer device probing when resuming from hibernation syzbot is reporting hung task at miscopen 1, for there is a race window of AB-BA deadlock which involves probecount variable. Currently waitfordeviceprobe from...

5.5CVSS5.3AI score0.00247EPSS
SaveExploits0
CVE
CVE
added 2025/06/18 11:03 a.m.85 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.0024EPSS
SaveExploits0References6Affected Software1
CVE
CVE
added 2025/06/18 11:03 a.m.84 views

CVE-2022-50198

CVE-2022-50198 applies to the Linux kernel ARM OMAP2+ stack. The vulnerability arises from a refcount leak in omap3xxx_prm_late_init: of_find_matching_node() returns a node pointer with a refcount incremented, and of_node_put() was added to release it when no longer needed. The patch fixes the le...

5.5CVSS6.4AI score0.00243EPSS
SaveExploits0References7Affected Software1
CVE
CVE
added 2025/06/18 11:03 a.m.85 views

CVE-2022-50197

In CVE-2022-50197, the Linux kernel vulnerability affects the cpufreq: zynq component. The root cause is a refcount leak when retrieving a device node: of_find_compatible_node() returns a node pointer with an incremented refcount, and missing of_node_put() on cleanup leads to a leak. The fix adds...

5.5CVSS6.4AI score0.00241EPSS
SaveExploits0References8Affected Software1
Cvelist
Cvelist
added 2025/06/18 11:03 a.m.34 views

CVE-2022-50196 soc: qcom: ocmem: Fix refcount leak in of_get_ocmem

In the Linux kernel, the following vulnerability has been resolved: soc: qcom: ocmem: Fix refcount leak in ofgetocmem 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. ofnodeput will...

0.00239EPSS
SaveExploits0References5
Debian CVE
Debian CVE
added 2025/06/18 11:03 a.m.18 views

CVE-2022-50196

In the Linux kernel, the following vulnerability has been resolved: soc: qcom: ocmem: Fix refcount leak in ofgetocmem 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. ofnodeput will...

5.5CVSS5.3AI score0.00239EPSS
SaveExploits0
CVE
CVE
added 2025/06/18 11:03 a.m.112 views

CVE-2022-50194

The CVE-2022-50194 issue affects the Linux kernel, specifically the soc: qcom: aoss path, where for_each_available_child_of_node() leaks a refcount when breaking out of iteration. The root cause is a missing of_node_put() after iterating, leading to a refcount leak on the previously referenced no...

5.5CVSS6.4AI score0.00241EPSS
SaveExploits0References6Affected Software1
Debian CVE
Debian CVE
added 2025/06/18 11:03 a.m.21 views

CVE-2022-50194

In the Linux kernel, the following vulnerability has been resolved: soc: qcom: aoss: Fix refcount leak in qmpcoolingdevicesregister Every iteration of foreachavailablechildofnode decrements the reference count of the previous node. When breaking early from a foreachavailablechildofnode loop, we...

5.5CVSS5.3AI score0.00241EPSS
SaveExploits0
Cvelist
Cvelist
added 2025/06/18 11:03 a.m.57 views

CVE-2022-50192 spi: tegra20-slink: fix UAF in tegra_slink_remove()

In the Linux kernel, the following vulnerability has been resolved: spi: tegra20-slink: fix UAF in tegraslinkremove After calling spiunregistermaster, the refcount of master will be decrease to 0, and it will be freed in spicontrollerrelease, the device data also will be freed, so it will lead a...

0.00252EPSS
SaveExploits0References4
Debian CVE
Debian CVE
added 2025/06/18 11:03 a.m.9 views

CVE-2022-50191

In the Linux kernel, the following vulnerability has been resolved: regulator: of: Fix refcount leak bug in ofgetregulationconstraints We should call the ofnodeput for the reference returned by ofgetchildbyname which has increased the refcount...

5.5CVSS5.3AI score0.00247EPSS
SaveExploits0
Debian CVE
Debian CVE
added 2025/06/18 11:03 a.m.16 views

CVE-2022-50187

In the Linux kernel, the following vulnerability has been resolved: ath11k: fix netdev open race Make sure to allocate resources needed before registering the device. This specifically avoids having a racing open trigger a BUGON in modtimer when ath11kmacopstart is called before the monreaptimer ...

4.7CVSS5.1AI score0.00161EPSS
SaveExploits0
Cvelist
Cvelist
added 2025/06/18 11:03 a.m.35 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.00239EPSS
SaveExploits0References4
OSV
OSV
added 2025/06/18 11:03 a.m.16 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
Debian CVE
Debian CVE
added 2025/06/18 11:03 a.m.7 views

CVE-2022-50185

In the Linux kernel, the following vulnerability has been resolved: drm/radeon: fix potential buffer overflow in nisetmcspecialregisters The last case label can write two buffers 'mcregaddressj' and 'mcdataj' with 'j' offset equal to SMCNISLANDSMCREGISTERARRAYSIZE since there are no checks for th...

7.8CVSS5.7AI score0.00282EPSS
SaveExploits0
Debian CVE
Debian CVE
added 2025/06/18 11:03 a.m.14 views

CVE-2022-50181

In the Linux kernel, the following vulnerability has been resolved: virtio-gpu: fix a missing check to avoid NULL dereference 'cacheent' could be set NULL inside virtiogpucmdgetcapset and it will lead to a NULL dereference by a lately use of it i.e., ptr = cacheent-capscache. Fix it with a NULL...

5.5CVSS5.3AI score0.00246EPSS
SaveExploits0
Debian CVE
Debian CVE
added 2025/06/18 11:03 a.m.16 views

CVE-2022-50177

In the Linux kernel, the following vulnerability has been resolved: rcutorture: Fix ksoftirqd boosting timing and iteration The RCU priority boosting can fail in two situations: 1 If nrcpus= maxcpus=, which means if the total number of CPUs is higher than those brought online at boot, then...

5.5CVSS5.5AI score0.00239EPSS
SaveExploits0
CVE
CVE
added 2025/06/18 11:03 a.m.37 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.00237EPSS
SaveExploits0References3Affected Software1
CVE
CVE
added 2025/06/18 11:03 a.m.93 views

CVE-2022-50169

CVE-2022-50169 references a vulnerability in the Linux kernel’s wifi/wil6210 debugfs handling (wil_write_file_wmi). The root cause is that simple_write_to_buffer() succeeds if any single byte is initialized, which can leak information because the entire buffer may not be initialized. The fix init...

7.1CVSS6.1AI score0.00254EPSS
SaveExploits0References8Affected Software1
Rows per page
Query Builder