Lucene search
+L

5568 matches found

OSV
OSV
added 2025/06/18 11:02 a.m.10 views

CVE-2022-50111 ASoC: mt6359: Fix refcount leak bug

In the Linux kernel, the following vulnerability has been resolved: ASoC: mt6359: Fix refcount leak bug In mt6359parsedt and mt6359accdetparsedt, we should call ofnodeput for the reference returned by ofgetchildbyname which has increased the refcount...

5.9AI score
SaveExploits0References7
Debian CVE
Debian CVE
added 2025/06/18 11:02 a.m.16 views

CVE-2022-50112

In the Linux kernel, the following vulnerability has been resolved: rpmsg: qcomsmd: Fix refcount leak in qcomsmdparseedge ofparsephandle returns a node pointer with refcount incremented, we should use ofnodeput on it when done...

5.5CVSS5.3AI score0.00211EPSS
SaveExploits0
Cvelist
Cvelist
added 2025/06/18 11:02 a.m.16 views

CVE-2022-50108 mfd: max77620: Fix refcount leak in max77620_initialise_fps

In the Linux kernel, the following vulnerability has been resolved: mfd: max77620: Fix refcount leak in max77620initialisefps ofgetchildbyname returns a node pointer with refcount incremented, we should use ofnodeput on it when not need anymore. Add missing ofnodeput to avoid refcount leak...

0.00211EPSS
SaveExploits0References6
CVE
CVE
added 2025/06/18 11:02 a.m.81 views

CVE-2022-50108

CVE-2022-50108 affects the Linux kernel via the mfd: max77620 sub-system. The root cause is a refcount leak in max77620_initialise_fps: of_get_child_by_name() returns a node pointer with an incremented refcount, and the patch adds missing of_node_put() to release it when no longer needed. The iss...

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

CVE-2022-50109 video: fbdev: amba-clcd: Fix refcount leak bugs

In the Linux kernel, the following vulnerability has been resolved: video: fbdev: amba-clcd: Fix refcount leak bugs In clcdfbofinitdisplay, we should call ofnodeput for the references returned by ofgraphgetnextendpoint and ofgraphgetremoteportparent which have increased the refcount. Besides, we...

0.00217EPSS
SaveExploits0References8
Debian CVE
Debian CVE
added 2025/06/18 11:02 a.m.11 views

CVE-2022-50109

In the Linux kernel, the following vulnerability has been resolved: video: fbdev: amba-clcd: Fix refcount leak bugs In clcdfbofinitdisplay, we should call ofnodeput for the references returned by ofgraphgetnextendpoint and ofgraphgetremoteportparent which have increased the refcount. Besides, we...

5.5CVSS5.4AI score0.00217EPSS
SaveExploits0
OSV
OSV
added 2025/06/18 11:02 a.m.9 views

CVE-2022-50109 video: fbdev: amba-clcd: Fix refcount leak bugs

In the Linux kernel, the following vulnerability has been resolved: video: fbdev: amba-clcd: Fix refcount leak bugs In clcdfbofinitdisplay, we should call ofnodeput for the references returned by ofgraphgetnextendpoint and ofgraphgetremoteportparent which have increased the refcount. Besides, we...

6.1AI score
SaveExploits0References11
OSV
OSV
added 2025/06/18 11:02 a.m.18 views

CVE-2022-50108 mfd: max77620: Fix refcount leak in max77620_initialise_fps

In the Linux kernel, the following vulnerability has been resolved: mfd: max77620: Fix refcount leak in max77620initialisefps ofgetchildbyname 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.9AI score
SaveExploits0References9
CVE
CVE
added 2025/06/18 11:02 a.m.94 views

CVE-2022-50109

The CVE-2022-50109 issue is a Linux kernel vulnerability in the video: fbdev: amba-clcd driver. The root cause is refcount leaks from references returned by of_graph_get_next_endpoint() and of_graph_get_remote_port_parent() in clcdfb_of_init_display(). Mitigation described in the referenced discl...

5.5CVSS6.6AI score0.00217EPSS
SaveExploits0References8Affected Software1
OSV
OSV
added 2025/06/18 11:02 a.m.11 views

CVE-2022-50106 powerpc/cell/axon_msi: Fix refcount leak in setup_msi_msg_address

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...

6.1AI score
SaveExploits0References11
CVE
CVE
added 2025/06/18 11:02 a.m.37 views

CVE-2022-50106

The CVE-2022-50106 issue affects the Linux kernel, specifically powerpc/cell/axon_msi: a refcount leak in setup_msi_msg_address caused by of_get_next_parent() returning a node pointer with an incremented refcount. The root cause is missing of_node_put() in the error path, leading to leaking refer...

5.5CVSS6.4AI score0.00169EPSS
SaveExploits0References8Affected Software1
Debian CVE
Debian CVE
added 2025/06/18 11:02 a.m.17 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.5CVSS5.4AI score0.00169EPSS
SaveExploits0
CVE
CVE
added 2025/06/18 11:02 a.m.59 views

CVE-2022-50105

The CVE-2022-50105 issue affects the Linux kernel (powerpc/spufs) where of_find_node_by_path() could leak a refcount. The fix, as documented, is to call of_node_put() on the remotely referenced device node when done, preventing a refcount leak in spufs_init_isolated_loader. Connected advisories (...

5.5CVSS6.5AI score0.00166EPSS
SaveExploits0References8Affected Software1
OSV
OSV
added 2025/06/18 11:02 a.m.11 views

CVE-2022-50105 powerpc/spufs: Fix refcount leak in spufs_init_isolated_loader

In the Linux kernel, the following vulnerability has been resolved: powerpc/spufs: Fix refcount leak in spufsinitisolatedloader offindnodebypath returns remote device nodepointer with refcount incremented, we should use ofnodeput on it when done. Add missing ofnodeput to avoid refcount leak...

6.2AI score
SaveExploits0References11
Cvelist
Cvelist
added 2025/06/18 11:02 a.m.16 views

CVE-2022-50106 powerpc/cell/axon_msi: Fix refcount leak in setup_msi_msg_address

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...

0.00169EPSS
SaveExploits0References8
OSV
OSV
added 2025/06/18 11:02 a.m.8 views

CVE-2022-50104 powerpc/xive: Fix refcount leak in xive_get_max_prio

In the Linux kernel, the following vulnerability has been resolved: powerpc/xive: Fix refcount leak in xivegetmaxprio offindnodebypath returns a node pointer with refcount incremented, we should use ofnodeput on it when done. Add missing ofnodeput to avoid refcount leak...

5.9AI score
SaveExploits0References11
Cvelist
Cvelist
added 2025/06/18 11:02 a.m.26 views

CVE-2022-50104 powerpc/xive: Fix refcount leak in xive_get_max_prio

In the Linux kernel, the following vulnerability has been resolved: powerpc/xive: Fix refcount leak in xivegetmaxprio offindnodebypath returns a node pointer with refcount incremented, we should use ofnodeput on it when done. Add missing ofnodeput to avoid refcount leak...

0.00166EPSS
SaveExploits0References8
CVE
CVE
added 2025/06/18 11:02 a.m.85 views

CVE-2022-50104

CVE-2022-50104 affects the Linux kernel, specifically the powerpc/xive subsystem. The root cause is a refcount leak caused by a node pointer returned by of_find_node_by_path() with an incremented refcount and missing of_node_put() when done. The remediation is a patch that adds the missing of_nod...

5.5CVSS6.4AI score0.00166EPSS
SaveExploits0References8Affected Software1
Debian CVE
Debian CVE
added 2025/06/18 11:02 a.m.62 views

CVE-2022-50104

In the Linux kernel, the following vulnerability has been resolved: powerpc/xive: Fix refcount leak in xivegetmaxprio offindnodebypath returns a node pointer with refcount incremented, we should use ofnodeput on it when done. Add missing ofnodeput to avoid refcount leak...

5.5CVSS5.3AI score0.00166EPSS
SaveExploits0
OSV
OSV
added 2025/06/18 11:02 a.m.16 views

CVE-2022-50061 pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map

In the Linux kernel, the following vulnerability has been resolved: pinctrl: nomadik: Fix refcount leak in nmkpinctrldtsubnodetomap 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.9AI score
SaveExploits0References11
Rows per page
Query Builder