Lucene search
+L

8203 matches found

CVE
CVE
added 2025/02/26 2:24 a.m.157 views

CVE-2022-49716

CVE-2022-49716 affects the Linux kernel’s irqchip/gic-v3 mechanism. The vulnerability stems from incorrect refcount handling in gic_populate_ppi_partitions: of_get_child_by_name() returns a node pointer with an incremented refcount, and if not properly released, a refcount leak occurs when kcallo...

5.5CVSS5.4AI score0.00281EPSS
SaveExploits0References5Affected Software1
OSV
OSV
added 2025/02/26 2:24 a.m.10 views

CVE-2022-49716 irqchip/gic-v3: Fix error handling in gic_populate_ppi_partitions

In the Linux kernel, the following vulnerability has been resolved: irqchip/gic-v3: Fix error handling in gicpopulateppipartitions ofgetchildbyname returns a node pointer with refcount incremented, we should use ofnodeput on it when not need anymore. When kcalloc fails, it missing ofnodeput and...

5.5CVSS5.3AI score
SaveExploits0References8
Cvelist
Cvelist
added 2025/02/26 2:24 a.m.27 views

CVE-2022-49676 memory: samsung: exynos5422-dmc: Fix refcount leak in of_get_dram_timings

In the Linux kernel, the following vulnerability has been resolved: memory: samsung: exynos5422-dmc: Fix refcount leak in ofgetdramtimings ofparsephandle returns a node pointer with refcount incremented, we should use ofnodeput on it when not need anymore. This function doesn't call ofnodeput in...

0.00256EPSS
SaveExploits0References4
CVE
CVE
added 2025/02/26 2:24 a.m.93 views

CVE-2022-49676

CVE-2022-49676 refers to a Linux kernel issue for the Samsung Exynos5422 DMC memory controller where a refcount leak in of_get_dram_timings could occur due to missing of_node_put() in error paths. The bug stems from of_parse_phandle() returning a node pointer with an incremented refcount that was...

5.5CVSS5.4AI score0.00256EPSS
SaveExploits0References4Affected Software1
Cvelist
Cvelist
added 2025/02/26 2:24 a.m.17 views

CVE-2022-49671 RDMA/cm: Fix memory leak in ib_cm_insert_listen

In the Linux kernel, the following vulnerability has been resolved: RDMA/cm: Fix memory leak in ibcminsertlisten cmallocidpriv allocates resource for the cmidpriv. When cminitlisten fails it doesn't free it, leading to memory leak. Add the missing error unwind...

0.00281EPSS
SaveExploits0References4
CVE
CVE
added 2025/02/26 2:24 a.m.147 views

CVE-2022-49671

CVE-2022-49671 affects the Linux kernel RDMA/CM component. The issue is a memory leak in ib_cm_insert_listen where cm_id_priv resources allocated by cm_alloc_id_priv() are not freed if cm_init_listen() fails; an error unwind was missing and has been added to fix the leak. Connected sources refere...

5.5CVSS5.4AI score0.00281EPSS
SaveExploits0References4Affected Software1
Cvelist
Cvelist
added 2025/02/26 2:23 a.m.22 views

CVE-2022-49657 usbnet: fix memory leak in error case

In the Linux kernel, the following vulnerability has been resolved: usbnet: fix memory leak in error case usbnetwritecmdasync mixed up which buffers need to be freed in which error case. v2: add Fixes tag v3: fix uninitialized buf pointer...

0.00278EPSS
SaveExploits0References8
OSV
OSV
added 2025/02/26 2:23 a.m.8 views

CVE-2022-49657 usbnet: fix memory leak in error case

In the Linux kernel, the following vulnerability has been resolved: usbnet: fix memory leak in error case usbnetwritecmdasync mixed up which buffers need to be freed in which error case. v2: add Fixes tag v3: fix uninitialized buf pointer...

5.5CVSS5.1AI score
SaveExploits0References11
Debian CVE
Debian CVE
added 2025/02/26 2:23 a.m.8 views

CVE-2022-49657

In the Linux kernel, the following vulnerability has been resolved: usbnet: fix memory leak in error case usbnetwritecmdasync mixed up which buffers need to be freed in which error case. v2: add Fixes tag v3: fix uninitialized buf pointer...

5.5CVSS5.3AI score0.00278EPSS
SaveExploits0
CVE
CVE
added 2025/02/26 2:23 a.m.120 views

CVE-2022-49657

Mode C: CVE-2022-49657 affects the Linux kernel USB networking driver (usbnet). The issue is a memory leak in error paths, specifically usbnet_write_cmd_async() where the buffer(s) to be freed were mixed up, and later a fix for an uninitialized buffer pointer was added. Public references in Nessu...

5.5CVSS5.3AI score0.00278EPSS
SaveExploits0References8Affected Software1
Debian CVE
Debian CVE
added 2025/02/26 2:23 a.m.21 views

CVE-2022-49605

In the Linux kernel, the following vulnerability has been resolved: igc: Reinstate IGCREMOVED logic and implement it properly The initially merged version of the igc driver code via commit 146740f9abc4, "igc: Add support for PF" contained the following IGCREMOVED checks in the igcrd32/wr32 MMIO...

5.5CVSS5.5AI score0.00256EPSS
SaveExploits0
Cvelist
Cvelist
added 2025/02/26 2:23 a.m.20 views

CVE-2022-49569 spi: bcm2835: bcm2835_spi_handle_err(): fix NULL pointer deref for non DMA transfers

In the Linux kernel, the following vulnerability has been resolved: spi: bcm2835: bcm2835spihandleerr: fix NULL pointer deref for non DMA transfers In case a IRQ based transfer times out the bcm2835spihandleerr function is called. Since commit 1513ceee70f2 "spi: bcm2835: Drop dmapending flag" the...

0.00256EPSS
SaveExploits0References5
OSV
OSV
added 2025/02/26 2:23 a.m.14 views

CVE-2022-49568 KVM: Don't null dereference ops->destroy

In the Linux kernel, the following vulnerability has been resolved: KVM: Don't null dereference ops-destroy A KVM device cleanup happens in either of two callbacks: 1 destroy which is called when the VM is being destroyed; 2 release which is called when a device fd is closed. Most KVM devices use...

5.5CVSS5.4AI score
SaveExploits0References8
Cvelist
Cvelist
added 2025/02/26 2:23 a.m.19 views

CVE-2022-49568 KVM: Don't null dereference ops->destroy

In the Linux kernel, the following vulnerability has been resolved: KVM: Don't null dereference ops-destroy A KVM device cleanup happens in either of two callbacks: 1 destroy which is called when the VM is being destroyed; 2 release which is called when a device fd is closed. Most KVM devices use...

0.00297EPSS
SaveExploits0References5
Debian CVE
Debian CVE
added 2025/02/26 2:23 a.m.24 views

CVE-2022-49568

In the Linux kernel, the following vulnerability has been resolved: KVM: Don't null dereference ops-destroy A KVM device cleanup happens in either of two callbacks: 1 destroy which is called when the VM is being destroyed; 2 release which is called when a device fd is closed. Most KVM devices use...

5.5CVSS5.6AI score0.00297EPSS
SaveExploits0
Cvelist
Cvelist
added 2025/02/26 2:13 a.m.28 views

CVE-2022-49530 drm/amd/pm: fix double free in si_parse_power_table()

In the Linux kernel, the following vulnerability has been resolved: drm/amd/pm: fix double free in siparsepowertable In function siparsepowertable, array adev-pm.dpm.ps and its member is allocated. If the allocation of each member fails, the array itself is freed and returned with an error code...

7.8CVSS0.00278EPSS
SaveExploits0References9
Debian CVE
Debian CVE
added 2025/02/26 2:13 a.m.43 views

CVE-2022-49530

In the Linux kernel, the following vulnerability has been resolved: drm/amd/pm: fix double free in siparsepowertable In function siparsepowertable, array adev-pm.dpm.ps and its member is allocated. If the allocation of each member fails, the array itself is freed and returned with an error code...

7.8CVSS5.5AI score0.00278EPSS
SaveExploits0
Cvelist
Cvelist
added 2025/02/26 2:13 a.m.34 views

CVE-2022-49528 media: i2c: dw9714: Disable the regulator when the driver fails to probe

In the Linux kernel, the following vulnerability has been resolved: media: i2c: dw9714: Disable the regulator when the driver fails to probe When the driver fails to probe, we will get the following splat: 59.305988 ------------ cut here ------------ 59.306417 WARNING: CPU: 2 PID: 395 at...

0.0022EPSS
SaveExploits0References2
OSV
OSV
added 2025/02/26 2:13 a.m.25 views

CVE-2022-49528 media: i2c: dw9714: Disable the regulator when the driver fails to probe

In the Linux kernel, the following vulnerability has been resolved: media: i2c: dw9714: Disable the regulator when the driver fails to probe When the driver fails to probe, we will get the following splat: 59.305988 ------------ cut here ------------ 59.306417 WARNING: CPU: 2 PID: 395 at...

5AI score
SaveExploits0References5
Debian CVE
Debian CVE
added 2025/02/26 2:13 a.m.59 views

CVE-2022-49528

In the Linux kernel, the following vulnerability has been resolved: media: i2c: dw9714: Disable the regulator when the driver fails to probe When the driver fails to probe, we will get the following splat: 59.305988 ------------ cut here ------------ 59.306417 WARNING: CPU: 2 PID: 395 at...

5.5CVSS5.4AI score0.0022EPSS
SaveExploits0
Rows per page
Query Builder