Lucene search
K

258 matches found

CVE
CVE
added 2025/02/26 2:23 a.m.140 views

CVE-2022-49615

CVE-2022-49615 affects the Linux kernel ASoC rt711-sdca subsystem. A IO error during initial codec settings could dereference a NULL rt711->component before the probe completes, risking kernel panic. The fix changes the code path to use slave->dev instead of component->dev for the early ...

5.5CVSS5.2AI score0.00125EPSS
Exploits0References3Affected Software1
Vulnrichment
Vulnrichment
added 2025/02/26 2:23 a.m.3 views

CVE-2022-49615 ASoC: rt711-sdca: fix kernel NULL pointer dereference when IO error

In the Linux kernel, the following vulnerability has been resolved: ASoC: rt711-sdca: fix kernel NULL pointer dereference when IO error The initial settings will be written before the codec probe function. But, the rt711-component doesn't be assigned yet. If IO error happened during initial...

5.8AI score0.00125EPSS
Exploits0References3
Debian CVE
Debian CVE
added 2025/02/26 2:23 a.m.5 views

CVE-2022-49615

In the Linux kernel, the following vulnerability has been resolved: ASoC: rt711-sdca: fix kernel NULL pointer dereference when IO error The initial settings will be written before the codec probe function. But, the rt711-component doesn't be assigned yet. If IO error happened during initial...

5.5CVSS5.2AI score0.00125EPSS
Exploits0
Vulnrichment
Vulnrichment
added 2025/02/26 2:23 a.m.1 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...

6.5AI score0.00214EPSS
Exploits0References5
Debian CVE
Debian CVE
added 2025/02/26 2:13 a.m.9 views

CVE-2022-49510

In the Linux kernel, the following vulnerability has been resolved: drm/omap: fix NULL but dereferenced coccicheck error Fix the following coccicheck warning: ./drivers/gpu/drm/omapdrm/omapoverlay.c:89:22-25: ERROR: rovl is NULL but dereferenced. Here should be ovl-idx rather than rovl-idx...

5.5CVSS5.5AI score0.00133EPSS
Exploits0
OSV
OSV
added 2025/02/26 2:13 a.m.14 views

CVE-2022-49491 drm/rockchip: vop: fix possible null-ptr-deref in vop_bind()

In the Linux kernel, the following vulnerability has been resolved: drm/rockchip: vop: fix possible null-ptr-deref in vopbind It will cause null-ptr-deref in resourcesize, if platformgetresource returns NULL, move calling resourcesize after devmioremapresource that will check 'res' to avoid...

5.5CVSS5.2AI score0.00011EPSS
Exploits0References12
Debian CVE
Debian CVE
added 2025/02/26 2:13 a.m.7 views

CVE-2022-49453

In the Linux kernel, the following vulnerability has been resolved: soc: ti: tiscipmdomains: Check for null return of devmkcalloc The allocation funciton devmkcalloc may fail and return a null pointer, which would cause a null-pointer dereference later. It might be better to check it and directly...

5.5CVSS5.5AI score0.00172EPSS
Exploits0
Cvelist
Cvelist
added 2025/02/26 2:1 a.m.15 views

CVE-2022-49295 nbd: call genl_unregister_family() first in nbd_cleanup()

In the Linux kernel, the following vulnerability has been resolved: nbd: call genlunregisterfamily first in nbdcleanup Otherwise there may be race between module removal and the handling of netlink command, which can lead to the oops as shown below: BUG: kernel NULL pointer dereference, address:...

0.00014EPSS
Exploits0References8
OSV
OSV
added 2025/02/26 1:56 a.m.14 views

CVE-2022-49273 rtc: pl031: fix rtc features null pointer dereference

In the Linux kernel, the following vulnerability has been resolved: rtc: pl031: fix rtc features null pointer dereference When there is no interrupt line, rtc alarm feature is disabled. The clearing of the alarm feature bit was being done prior to allocations of ldata-rtc device, resulting in a...

5.5CVSS5.2AI score0.00111EPSS
Exploits0References7
Debian CVE
Debian CVE
added 2025/02/26 1:56 a.m.3 views

CVE-2022-49254

In the Linux kernel, the following vulnerability has been resolved: media: ti-vpe: cal: Fix a NULL pointer dereference in calctxv4l2initformats In calctxv4l2initformats, devmkzalloc is assigned to ctx-activefmt and there is a dereference of it after that, which could lead to NULL pointer...

5.5CVSS5.7AI score0.00024EPSS
Exploits0
OSV
OSV
added 2025/02/26 1:55 a.m.8 views

CVE-2022-49125 drm/sprd: fix potential NULL dereference

In the Linux kernel, the following vulnerability has been resolved: drm/sprd: fix potential NULL dereference 'drm' could be null in sprddrmshutdown, and drmwarn maybe dereference it, remove this warning log. v1 - v2: - Split checking platformgetresource return value to a separate patch - Use...

5.5CVSS5.2AI score0.00008EPSS
Exploits0References5
CVE
CVE
added 2025/02/26 1:54 a.m.82 views

CVE-2022-49083

CVE-2022-49083 concerns a kernel-level regression in the iommu/omap path that can trigger a NULL pointer dereference during device probe. The issue arises when a commit altered probe behavior (3f6634d997db) so that omap iommu probe returns 0 instead of ERR_PTR(-ENODEV), making probe_iommu_group-&...

5.5CVSS5.4AI score0.00036EPSS
Exploits0References5Affected Software1
Debian CVE
Debian CVE
added 2025/02/26 1:54 a.m.7 views

CVE-2022-49072

In the Linux kernel, the following vulnerability has been resolved: gpio: Restrict usage of GPIO chip irq members before initialization GPIO chip irq members are exposed before they could be completely initialized and this leads to race conditions. One such issue was observed for the gc-irq.domai...

5.5CVSS5.2AI score0.00104EPSS
Exploits0
OSV
OSV
added 2025/02/26 1:54 a.m.8 views

CVE-2022-49055 drm/amdkfd: Check for potential null return of kmalloc_array()

In the Linux kernel, the following vulnerability has been resolved: drm/amdkfd: Check for potential null return of kmallocarray As the kmallocarray may return null, the 'eventwaitersi.wait' would lead to null-pointer dereference. Therefore, it is better to check the return value of kmallocarray t...

5.5CVSS5.3AI score0.00008EPSS
Exploits0References11
Cvelist
Cvelist
added 2025/02/26 1:54 a.m.11 views

CVE-2021-47650 ASoC: soc-compress: prevent the potentially use of null pointer

In the Linux kernel, the following vulnerability has been resolved: ASoC: soc-compress: prevent the potentially use of null pointer There is one call trace that sndsocregistercard -sndsocbindcard-socinitpcmruntime -sndsocdaicompressnew-sndsocnewcompress. In the trace the 'codecdai' transfers from...

0.00009EPSS
Exploits0References6
Tenable Nessus
Tenable Nessus
added 2025/02/10 12:0 a.m.9 views

Azure Linux 3.0 Security Update: hyperv-daemons (CVE-2024-26984)

The version of hyperv-daemons installed on the remote Azure Linux 3.0 host is prior to tested version. It is, therefore, affected by a vulnerability as referenced in the CVE-2024-26984 advisory. - In the Linux kernel, the following vulnerability has been resolved: nouveau: fix instmem race...

5.5CVSS6AI score0.00018EPSS
Exploits0References2
NVD
NVD
added 2025/01/15 1:15 p.m.4 views

CVE-2024-36476

In the Linux kernel, the following vulnerability has been resolved: RDMA/rtrs: Ensure 'ibsge list' is accessible Move the declaration of the 'ibsge list' variable outside the 'alwaysinvalidate' block to ensure it remains accessible for use throughout the function. Previously, 'ibsge list' was...

5.5CVSS0.00007EPSS
Exploits0References8
Cvelist
Cvelist
added 2025/01/15 1:10 p.m.10 views

CVE-2024-36476 RDMA/rtrs: Ensure 'ib_sge list' is accessible

In the Linux kernel, the following vulnerability has been resolved: RDMA/rtrs: Ensure 'ibsge list' is accessible Move the declaration of the 'ibsge list' variable outside the 'alwaysinvalidate' block to ensure it remains accessible for use throughout the function. Previously, 'ibsge list' was...

0.00007EPSS
Exploits0References6
CVE
CVE
added 2025/01/15 1:10 p.m.129 views

CVE-2024-36476

CVE-2024-36476 affects the Linux kernel (RDMA/rtrs path). The bug arises from declaring the ib_sge list inside the always_invalidate block, making it inaccessible later in the function and enabling a potential kernel NULL pointer dereference. The vulnerability is addressed by moving the ib_sge li...

5.5CVSS6.5AI score0.00007EPSS
Exploits0References8Affected Software1
RedhatCVE
RedhatCVE
added 2025/01/09 5:57 p.m.9 views

CVE-2024-56773

In the Linux kernel, the following vulnerability has been resolved: kunit: Fix potential null dereference in kunitdevicedrivertest kunitkzalloc may return a NULL pointer, dereferencing it without NULL check may lead to NULL dereference. Add a NULL check for teststate...

5.5CVSS7AI score0.00019EPSS
Exploits0References4
Rows per page
Query Builder