Lucene search
+L

6310 matches found

OSV
OSV
added 2024/06/19 1:37 p.m.13 views

CVE-2024-38587 speakup: Fix sizeof() vs ARRAY_SIZE() bug

In the Linux kernel, the following vulnerability has been resolved: speakup: Fix sizeof vs ARRAYSIZE bug The "buf" pointer is an array of u16 values. This code should be using ARRAYSIZE which is 256 instead of sizeof which is 512, otherwise it can the still got out of bounds...

5.3CVSS6.1AI score0.01136EPSS
SaveExploits0References15
CVE
CVE
added 2024/06/19 1:37 p.m.89 views

CVE-2024-38585

CVE-2024-38585 — Linux kernel memory corruption in realloc . The issue arises in tools/nolibc/stdlib where realloc() could copy beyond the allocated region because memcpy() used heap->len instead of the input user_p_len. The vulnerability was resolved by passing user_p_len to memcpy() to preve...

7.1CVSS6.5AI score0.00233EPSS
SaveExploits0References5Affected Software1
Vulnrichment
Vulnrichment
added 2024/06/19 1:37 p.m.14 views

CVE-2024-38585 tools/nolibc/stdlib: fix memory error in realloc()

In the Linux kernel, the following vulnerability has been resolved: tools/nolibc/stdlib: fix memory error in realloc Pass userplen to memcpy instead of heap-len to prevent realloc from copying an extra sizeofheap bytes from beyond the allocated region...

6.7AI score0.00233EPSS
SaveExploits0References5
CVE
CVE
added 2024/06/19 1:37 p.m.195 views

CVE-2024-38581

CVE-2024-38581 : Linux kernel vulnerability affecting the AMDGPU MES path. The issue is a use-after-free in drm/amdgpu/mes triggered by the ramdom use-after-free caused by the fence fallback timer. The fix deletes the fence fallback timer to resolve the issue, and this change moved to amdgpu_mes....

7.8CVSS7.9AI score0.0023EPSS
SaveExploits0References4Affected Software1
Vulnrichment
Vulnrichment
added 2024/06/19 1:37 p.m.17 views

CVE-2024-38579 crypto: bcm - Fix pointer arithmetic

In the Linux kernel, the following vulnerability has been resolved: crypto: bcm - Fix pointer arithmetic In spu2dumpomd value of ptr is increased by ciphkeylen instead of hashivlen which could lead to going beyond the buffer boundaries. Fix this bug by changing ciphkeylen to hashivlen. Found by...

6.7AI score0.00254EPSS
SaveExploits0References9
OSV
OSV
added 2024/06/19 1:37 p.m.21 views

CVE-2024-38577 rcu-tasks: Fix show_rcu_tasks_trace_gp_kthread buffer overflow

In the Linux kernel, the following vulnerability has been resolved: rcu-tasks: Fix showrcutaskstracegpkthread buffer overflow There is a possibility of buffer overflow in showrcutaskstracegpkthread if counters, passed to sprintf are huge. Counter numbers, needed for this are unrealistically high,...

7.8CVSS6.5AI score0.00254EPSS
SaveExploits0References11
Cvelist
Cvelist
added 2024/06/19 1:35 p.m.26 views

CVE-2024-38573 cppc_cpufreq: Fix possible null pointer dereference

In the Linux kernel, the following vulnerability has been resolved: cppccpufreq: Fix possible null pointer dereference cppccpufreqgetrate and hisicppccpufreqgetrate can be called from different places with various parameters. So cpufreqcpuget can return null as 'policy' in some circumstances. Fix...

0.01003EPSS
SaveExploits0References6
Vulnrichment
Vulnrichment
added 2024/06/19 1:35 p.m.20 views

CVE-2024-38569 drivers/perf: hisi_pcie: Fix out-of-bound access when valid event group

In the Linux kernel, the following vulnerability has been resolved: drivers/perf: hisipcie: Fix out-of-bound access when valid event group The perf tool allows users to create event groups through following cmd 1, but the driver does not check whether the array index is out of bounds when writing...

6.9AI score0.00234EPSS
SaveExploits0References5
Vulnrichment
Vulnrichment
added 2024/06/19 1:35 p.m.25 views

CVE-2024-38562 wifi: nl80211: Avoid address calculations via out of bounds array indexing

In the Linux kernel, the following vulnerability has been resolved: wifi: nl80211: Avoid address calculations via out of bounds array indexing Before request-channels can be used, request-nchannels must be set. Additionally, address calculations for memory after the "channels" array need to be...

6.9AI score0.00234EPSS
SaveExploits0References4
CVE
CVE
added 2024/06/19 1:35 p.m.179 views

CVE-2024-38559

CVE-2024-38559: In the Linux kernel, the qedf SCSI path copies a userspace buffer without guaranteeing a NUL terminator, risking an OOB read in kstrtouint. The fix uses memdup_user_nul instead of memdup_user. Affected: kernel SCSI qedf path; Root cause: missing termination of the copied buffer. R...

4.4CVSS7.2AI score0.00253EPSS
SaveExploits0References11Affected Software1
Vulnrichment
Vulnrichment
added 2024/06/19 1:35 p.m.20 views

CVE-2024-38559 scsi: qedf: Ensure the copied buf is NUL terminated

In the Linux kernel, the following vulnerability has been resolved: scsi: qedf: Ensure the copied buf is NUL terminated Currently, we allocate a count-sized kernel buffer and copy count from userspace to that buffer. Later, we use kstrtouint on this buffer but we don't ensure that the string is...

6.9AI score0.00253EPSS
SaveExploits0References9
Vulnrichment
Vulnrichment
added 2024/06/19 1:35 p.m.25 views

CVE-2024-38556 net/mlx5: Add a timeout to acquire the command queue semaphore

In the Linux kernel, the following vulnerability has been resolved: net/mlx5: Add a timeout to acquire the command queue semaphore Prevent forced completion handling on an entry that has not yet been assigned an index, causing an out of bounds access on idx = -22. Instead of waiting indefinitely...

7AI score0.00259EPSS
SaveExploits0References5
CVE
CVE
added 2024/06/19 1:35 p.m.133 views

CVE-2024-38556

CVE-2024-38556 affects the Linux kernel net/mlx5 code. The vulnerability arises from how the command queue semaphore timeout handling can allow an entry to be processed before an index is allocated, risking an out-of-bounds access at idx = -22 if the completion path proceeds without proper synchr...

7.8CVSS6.7AI score0.00259EPSS
SaveExploits0References5Affected Software1
Vulnrichment
Vulnrichment
added 2024/06/19 1:35 p.m.19 views

CVE-2024-38549 drm/mediatek: Add 0 size check to mtk_drm_gem_obj

In the Linux kernel, the following vulnerability has been resolved: drm/mediatek: Add 0 size check to mtkdrmgemobj Add a check to mtkdrmgeminit if we attempt to allocate a GEM object of 0 bytes. Currently, no such check exists and the kernel will panic if a userspace application attempts to...

6.7AI score0.00281EPSS
SaveExploits0References9
Cvelist
Cvelist
added 2024/06/19 1:35 p.m.25 views

CVE-2024-38546 drm: vc4: Fix possible null pointer dereference

In the Linux kernel, the following vulnerability has been resolved: drm: vc4: Fix possible null pointer dereference In vc4hdmiaudioinit ofgetaddress may return NULL which is later dereferenced. Fix this bug by adding NULL check. Found by Linux Verification Center linuxtesting.org with SVACE...

0.00252EPSS
SaveExploits0References7
Cvelist
Cvelist
added 2024/06/19 1:35 p.m.46 views

CVE-2024-38543 lib/test_hmm.c: handle src_pfns and dst_pfns allocation failure

In the Linux kernel, the following vulnerability has been resolved: lib/testhmm.c: handle srcpfns and dstpfns allocation failure The kcalloc in dmirrordeviceevictchunk will return null if the physical memory has run out. As a result, if srcpfns or dstpfns is dereferenced, the null pointer...

0.00241EPSS
SaveExploits0References5
CVE
CVE
added 2024/06/19 1:35 p.m.144 views

CVE-2024-38543

CVE-2024-38543 : In the Linux kernel, a vulnerability in lib/test_hmm.c arose from allocation failures for src_pfns/dst_pfns. If kcalloc() returns NULL, dereferencing these pointers could trigger a null pointer dereference, especially as the device could be evicted. Remediation implemented: add a...

5.5CVSS7AI score0.00241EPSS
SaveExploits0References5Affected Software1
CVE
CVE
added 2024/06/19 1:35 p.m.87 views

CVE-2024-38539

CVE-2024-38539 affects the Linux kernel RDMA subsystem (RDMA/cma and ib_core) with kmemleak-related leakage observed during blktests nvme/rdma when siw is used. The root cause is that kmemleak-detected unreferenced objects can be produced due to rdma_put_gid_attr not being invoked when sgid_attr ...

5.5CVSS7AI score0.00225EPSS
SaveExploits0References4Affected Software1
CVE
CVE
added 2024/06/19 1:35 p.m.199 views

CVE-2024-38538

CVE-2024-38538 is a Linux kernel vulnerability in the bridge xmit path. The issue arises when a short skb (less than ETH_HLEN) is processed, risking uninitialized data in br_dev_xmit. The fix adds a guard to ensure the kernel only pulls the required ETH header bytes and does not assume availabili...

7.1CVSS8AI score0.00284EPSS
SaveExploits0References10Affected Software1
Debian CVE
Debian CVE
added 2024/06/19 6:20 a.m.30 views

CVE-2024-36978

In the Linux kernel, the following vulnerability has been resolved: net: sched: schmultiq: fix possible OOB write in multiqtune q-bands will be assigned to qopt-bands to execute subsequent code logic after kmalloc. So the old q-bands should not be used in kmalloc. Otherwise, an out-of-bounds writ...

7.8CVSS5.8AI score0.00284EPSS
SaveExploits0
Rows per page
Query Builder