Lucene search
+L

713 matches found

OSV
OSV
added 2025/02/26 7:01 a.m.7 views

UBUNTU-CVE-2022-49445

In the Linux kernel, the following vulnerability has been resolved: pinctrl: renesas: core: Fix possible null-ptr-deref in shpfcmapresources It will cause null-ptr-deref when using 'res', if platformgetresource returns NULL, so move using 'res' after devmioremapresource that will check it to avoi...

5.5CVSS6.2AI score0.00256EPSS
SaveExploits0References8
OSV
OSV
added 2025/02/26 7:01 a.m.13 views

UBUNTU-CVE-2022-49449

In the Linux kernel, the following vulnerability has been resolved: pinctrl: renesas: rzn1: Fix possible null-ptr-deref in shpfcmapresources It will cause null-ptr-deref when using 'res', if platformgetresource returns NULL, so move using 'res' after devmioremapresource that will check it to avoi...

5.5CVSS6.2AI score0.00263EPSS
SaveExploits0References8
OSV
OSV
added 2025/02/26 7:01 a.m.10 views

UBUNTU-CVE-2022-49618

In the Linux kernel, the following vulnerability has been resolved: pinctrl: aspeed: Fix potential NULL dereference in aspeedpinmuxsetmux pdesc could be null but still dereference pdesc-name and it will lead to a null pointer access. So we move a null check before dereference...

5.5CVSS6.2AI score0.00252EPSS
SaveExploits0References7
OSV
OSV
added 2025/02/26 7:00 a.m.4 views

DEBIAN-CVE-2022-49185

In the Linux kernel, the following vulnerability has been resolved: pinctrl: nomadik: Add missing ofnodeput in nmkpinctrlprobe This node pointer is returned by ofparsephandle with refcount incremented in this function. Calling ofnodeput to avoid the refcount leak...

5.5CVSS5.4AI score0.0027EPSS
SaveExploits0References1
NVD
NVD
added 2025/02/26 7:00 a.m.18 views

CVE-2022-49185

In the Linux kernel, the following vulnerability has been resolved: pinctrl: nomadik: Add missing ofnodeput in nmkpinctrlprobe This node pointer is returned by ofparsephandle with refcount incremented in this function. Calling ofnodeput to avoid the refcount leak...

5.5CVSS0.0027EPSS
SaveExploits0References9
OSV
OSV
added 2025/02/26 7:00 a.m.7 views

UBUNTU-CVE-2022-49185

In the Linux kernel, the following vulnerability has been resolved: pinctrl: nomadik: Add missing ofnodeput in nmkpinctrlprobe This node pointer is returned by ofparsephandle with refcount incremented in this function. Calling ofnodeput to avoid the refcount leak...

5.5CVSS6.1AI score0.0027EPSS
SaveExploits0References12
Cvelist
Cvelist
added 2025/02/26 2:23 a.m.30 views

CVE-2022-49618 pinctrl: aspeed: Fix potential NULL dereference in aspeed_pinmux_set_mux()

In the Linux kernel, the following vulnerability has been resolved: pinctrl: aspeed: Fix potential NULL dereference in aspeedpinmuxsetmux pdesc could be null but still dereference pdesc-name and it will lead to a null pointer access. So we move a null check before dereference...

0.00252EPSS
SaveExploits0References4
Vulnrichment
Vulnrichment
added 2025/02/26 2:23 a.m.3 views

CVE-2022-49618 pinctrl: aspeed: Fix potential NULL dereference in aspeed_pinmux_set_mux()

In the Linux kernel, the following vulnerability has been resolved: pinctrl: aspeed: Fix potential NULL dereference in aspeedpinmuxsetmux pdesc could be null but still dereference pdesc-name and it will lead to a null pointer access. So we move a null check before dereference...

6.4AI score0.00252EPSS
SaveExploits0References4
Cvelist
Cvelist
added 2025/02/26 2:23 a.m.19 views

CVE-2022-49608 pinctrl: ralink: Check for null return of devm_kcalloc

In the Linux kernel, the following vulnerability has been resolved: pinctrl: ralink: Check for null return of devmkcalloc Because of the possible failure of the allocation, data-domains might be NULL pointer and will cause the dereference of the NULL pointer later. Therefore, it might be better t...

0.0027EPSS
SaveExploits0References6
CVE
CVE
added 2025/02/26 2:23 a.m.98 views

CVE-2022-49608

CVE-2022-49608 pertains to the Linux kernel pinctrl: ralink subsystem. A allocation failure can make data->domains NULL, leading to a NULL pointer dereference. The described fix adds a null return check after devm_kcalloc and suggests returning -ENOMEM immediately instead of manually freeing d...

5.5CVSS5.4AI score0.0027EPSS
SaveExploits0References6Affected Software1
Vulnrichment
Vulnrichment
added 2025/02/26 2:23 a.m.0 views

CVE-2022-49608 pinctrl: ralink: Check for null return of devm_kcalloc

In the Linux kernel, the following vulnerability has been resolved: pinctrl: ralink: Check for null return of devmkcalloc Because of the possible failure of the allocation, data-domains might be NULL pointer and will cause the dereference of the NULL pointer later. Therefore, it might be better t...

6.1AI score0.0027EPSS
SaveExploits0References6
OSV
OSV
added 2025/02/26 2:23 a.m.11 views

CVE-2022-49608 pinctrl: ralink: Check for null return of devm_kcalloc

In the Linux kernel, the following vulnerability has been resolved: pinctrl: ralink: Check for null return of devmkcalloc Because of the possible failure of the allocation, data-domains might be NULL pointer and will cause the dereference of the NULL pointer later. Therefore, it might be better t...

5.5CVSS4.9AI score
SaveExploits0References9
Cvelist
Cvelist
added 2025/02/26 2:12 a.m.27 views

CVE-2022-49449 pinctrl: renesas: rzn1: Fix possible null-ptr-deref in sh_pfc_map_resources()

In the Linux kernel, the following vulnerability has been resolved: pinctrl: renesas: rzn1: Fix possible null-ptr-deref in shpfcmapresources It will cause null-ptr-deref when using 'res', if platformgetresource returns NULL, so move using 'res' after devmioremapresource that will check it to avoi...

0.00263EPSS
SaveExploits0References5
CVE
CVE
added 2025/02/26 2:12 a.m.117 views

CVE-2022-49449

The CVE-2022-49449 issue affects Linux kernel pinctrl: renesas: rzn1. The root cause is a possible null-ptr-deref when using 'res' if platform_get_resource() returns NULL. The patch defers dereferencing 'res' by performing devm_ioremap_resource() first (which validates the resource) and then uses...

5.5CVSS5.3AI score0.00263EPSS
SaveExploits0References5Affected Software1
Debian CVE
Debian CVE
added 2025/02/26 2:12 a.m.44 views

CVE-2022-49449

In the Linux kernel, the following vulnerability has been resolved: pinctrl: renesas: rzn1: Fix possible null-ptr-deref in shpfcmapresources It will cause null-ptr-deref when using 'res', if platformgetresource returns NULL, so move using 'res' after devmioremapresource that will check it to avoi...

5.5CVSS5.5AI score0.00263EPSS
SaveExploits0
Vulnrichment
Vulnrichment
added 2025/02/26 2:12 a.m.1 views

CVE-2022-49449 pinctrl: renesas: rzn1: Fix possible null-ptr-deref in sh_pfc_map_resources()

In the Linux kernel, the following vulnerability has been resolved: pinctrl: renesas: rzn1: Fix possible null-ptr-deref in shpfcmapresources It will cause null-ptr-deref when using 'res', if platformgetresource returns NULL, so move using 'res' after devmioremapresource that will check it to avoi...

6.5AI score0.00263EPSS
SaveExploits0References5
Vulnrichment
Vulnrichment
added 2025/02/26 2:12 a.m.3 views

CVE-2022-49445 pinctrl: renesas: core: Fix possible null-ptr-deref in sh_pfc_map_resources()

In the Linux kernel, the following vulnerability has been resolved: pinctrl: renesas: core: Fix possible null-ptr-deref in shpfcmapresources It will cause null-ptr-deref when using 'res', if platformgetresource returns NULL, so move using 'res' after devmioremapresource that will check it to avoi...

6.5AI score0.00256EPSS
SaveExploits0References5
Cvelist
Cvelist
added 2025/02/26 2:12 a.m.25 views

CVE-2022-49445 pinctrl: renesas: core: Fix possible null-ptr-deref in sh_pfc_map_resources()

In the Linux kernel, the following vulnerability has been resolved: pinctrl: renesas: core: Fix possible null-ptr-deref in shpfcmapresources It will cause null-ptr-deref when using 'res', if platformgetresource returns NULL, so move using 'res' after devmioremapresource that will check it to avoi...

0.00256EPSS
SaveExploits0References5
OSV
OSV
added 2025/02/26 2:12 a.m.15 views

CVE-2022-49445 pinctrl: renesas: core: Fix possible null-ptr-deref in sh_pfc_map_resources()

In the Linux kernel, the following vulnerability has been resolved: pinctrl: renesas: core: Fix possible null-ptr-deref in shpfcmapresources It will cause null-ptr-deref when using 'res', if platformgetresource returns NULL, so move using 'res' after devmioremapresource that will check it to avoi...

5.5CVSS5.3AI score
SaveExploits0References8
CVE
CVE
added 2025/02/26 2:12 a.m.116 views

CVE-2022-49445

CVE-2022-49445 is described in the initial document as a Linux kernel vulnerability where pinctrl: renesas: core could dereference a NULL pointer in sh_pfc_map_resources() if platform_get_resource() returns NULL. The fix moves using the resource after devm_ioremap_resource() (which checks NULL) a...

5.5CVSS6.5AI score0.00256EPSS
SaveExploits0References5Affected Software1
Rows per page
Query Builder