Lucene search
+L

13165 matches found

CVE
CVE
added 2025/03/27 4:37 p.m.97 views

CVE-2023-52941

CVE-2023-52941 affects the Linux kernel can:isotp subsystem. The bug arose from the tx timer handling for isotp PDUs, where the timer served two roles: sending two consecutive frames with a gap and monitoring timeouts for flow control and echo frames. This caused more complex txstate checks and e...

5.5CVSS6.6AI score0.00211EPSS
SaveExploits0References2Affected Software1
OSV
OSV
added 2025/03/27 4:37 p.m.20 views

CVE-2023-52941 can: isotp: split tx timer into transmission and timeout

In the Linux kernel, the following vulnerability has been resolved: can: isotp: split tx timer into transmission and timeout The timer for the transmission of isotp PDUs formerly had two functions: 1. send two consecutive frames with a given time gap 2. monitor the timeouts for flow control frame...

5.2AI score
SaveExploits0References5
CVE
CVE
added 2025/03/27 4:37 p.m.141 views

CVE-2023-52938

CVE-2023-52938 concerns the Linux kernel in the usb: typec: ucsi area. The issue occurs when the driver tries to resume USB-C ports that have not yet been registered, causing a NULL pointer dereference. The attached connected documents confirm the vulnerability and its fix in the kernel, with ref...

5.5CVSS6.6AI score0.00211EPSS
SaveExploits0References2Affected Software1
Cvelist
Cvelist
added 2025/03/27 4:37 p.m.26 views

CVE-2023-52936 kernel/irq/irqdomain.c: fix memory leak with using debugfs_lookup()

In the Linux kernel, the following vulnerability has been resolved: kernel/irq/irqdomain.c: fix memory leak with using debugfslookup When calling debugfslookup the result must have dput called on it, otherwise the memory will leak over time. To make things simpler, just call debugfslookupandremov...

0.00245EPSS
SaveExploits0References3
CVE
CVE
added 2025/03/27 4:37 p.m.137 views

CVE-2023-52937

Summary: CVE-2023-52937 affects the Linux kernel’s hv_balloon path. The vulnerability arises from a memory leak when using debugfs_lookup(): the result must be released with dput(), but this handling is not performed in the hv_balloon code. The available connected sources state the fix is to call...

5.5CVSS6.6AI score0.00205EPSS
SaveExploits0References2Affected Software1
OSV
OSV
added 2025/03/27 4:37 p.m.9 views

CVE-2023-52936 kernel/irq/irqdomain.c: fix memory leak with using debugfs_lookup()

In the Linux kernel, the following vulnerability has been resolved: kernel/irq/irqdomain.c: fix memory leak with using debugfslookup When calling debugfslookup the result must have dput called on it, otherwise the memory will leak over time. To make things simpler, just call debugfslookupandremov...

5.5CVSS5.8AI score
SaveExploits0References6
OSV
OSV
added 2025/03/27 4:37 p.m.9 views

CVE-2023-52937 HV: hv_balloon: fix memory leak with using debugfs_lookup()

In the Linux kernel, the following vulnerability has been resolved: HV: hvballoon: fix memory leak with using debugfslookup When calling debugfslookup the result must have dput called on it, otherwise the memory will leak over time. To make things simpler, just call debugfslookupandremove instead...

5.5CVSS5.9AI score
SaveExploits0References5
CVE
CVE
added 2025/03/27 4:37 p.m.103 views

CVE-2023-52936

CVE-2023-52936 affects the Linux kernel, specifically the irqdomain.c path where debugfs_lookup() results were not being released with dput(), causing a memory leak over time. The advisory notes the fix is to replace the call with debugfs_lookup_and_remove(), which handles the necessary cleanup i...

5.5CVSS6.6AI score0.00245EPSS
SaveExploits0References3Affected Software1
Debian CVE
Debian CVE
added 2025/03/27 4:37 p.m.16 views

CVE-2023-52935

In the Linux kernel, the following vulnerability has been resolved: mm/khugepaged: fix -anonvma race If an -anonvma is attached to the VMA, collapseandfreepmd requires it to be locked. Page table traversal is allowed under any one of the mmap lock, the anonvma lock if the VMA is associated with a...

7.8CVSS6AI score0.00194EPSS
SaveExploits0
Debian CVE
Debian CVE
added 2025/03/27 4:37 p.m.47 views

CVE-2023-52934

In the Linux kernel, the following vulnerability has been resolved: mm/MADVCOLLAPSE: catch !none !huge !bad pmd lookups In commit 34488399fa08 "mm/madvise: add file and shmem support to MADVCOLLAPSE" we make the following change to findpmdorthpornone: - if !pmdpresentpmde - return SCANPMDNULL; + ...

7.8CVSS5.4AI score0.0012EPSS
SaveExploits0
OSV
OSV
added 2025/03/27 4:37 p.m.16 views

CVE-2023-52933 Squashfs: fix handling and sanity checking of xattr_ids count

In the Linux kernel, the following vulnerability has been resolved: Squashfs: fix handling and sanity checking of xattrids count A Sysbot 1 corrupted filesystem exposes two flaws in the handling and sanity checking of the xattrids count in the filesystem. Both of these flaws cause computation...

5.6AI score
SaveExploits0References10
OSV
OSV
added 2025/03/27 4:37 p.m.12 views

CVE-2023-52932 mm/swapfile: add cond_resched() in get_swap_pages()

In the Linux kernel, the following vulnerability has been resolved: mm/swapfile: add condresched in getswappages The softlockup still occurs in getswappages under memory pressure. 64 CPU cores, 64GB memory, and 28 zram devices, the disksize of each zram device is 50MB with same priority as si. Us...

5.5CVSS6AI score
SaveExploits0References10
CVE
CVE
added 2025/03/27 4:37 p.m.94 views

CVE-2023-52930

The CVE-2023-52930 issue affects the Linux kernel’s i915 driver: a race between multiple threads calling I915_GEM_SET_TILING to switch tiling to I915_TILING_NONE could cause a double-free (or memory leak on transitions). The fix moves allocation/free’ing of the bit_17 mask inside the section prot...

7.8CVSS6.5AI score0.00279EPSS
SaveExploits0References4Affected Software1
Cvelist
Cvelist
added 2025/03/27 4:37 p.m.18 views

CVE-2023-52930 drm/i915: Fix potential bit_17 double-free

In the Linux kernel, the following vulnerability has been resolved: drm/i915: Fix potential bit17 double-free A userspace with multiple threads racing I915GEMSETTILING to set the tiling to I915TILINGNONE could trigger a double free of the bit17 bitmask. Or conversely leak memory on the transition...

7.8CVSS0.00279EPSS
SaveExploits0References4
OSV
OSV
added 2025/03/27 4:37 p.m.14 views

CVE-2023-52930 drm/i915: Fix potential bit_17 double-free

In the Linux kernel, the following vulnerability has been resolved: drm/i915: Fix potential bit17 double-free A userspace with multiple threads racing I915GEMSETTILING to set the tiling to I915TILINGNONE could trigger a double free of the bit17 bitmask. Or conversely leak memory on the transition...

7.8CVSS5.3AI score
SaveExploits0References7
CVE
CVE
added 2025/03/27 4:37 p.m.90 views

CVE-2023-52929

The CVE-2023-52929 entry concerns a Linux kernel nvmem core cleanup bug: if dev_set_name() fails, nvmem->wp_gpio remains leaked because the cleanup path doesn’t release it. The described fix prefers reworking initialization and cleanup by splitting device_register() and reusing the nvmem_relea...

5.5CVSS6.7AI score0.00241EPSS
SaveExploits0References4Affected Software1
Debian CVE
Debian CVE
added 2025/03/27 4:37 p.m.64 views

CVE-2023-52929

In the Linux kernel, the following vulnerability has been resolved: nvmem: core: fix cleanup after devsetname If devsetname fails, we leak nvmem-wpgpio as the cleanup does not put this. While a minimal fix for this would be to add the gpiodput call, we can do better if we split deviceregister, an...

5.5CVSS5AI score0.00241EPSS
SaveExploits0
CVE
CVE
added 2025/03/27 4:37 p.m.107 views

CVE-2023-52928

CVE-2023-52928 concerns the Linux kernel’s BPF verifier. According to connected sources, the issue arises from the verifier’s handling of invalid kfunc calls in backtrack_insn, where such an instruction could be captured by fixup_kfunc_call() and, if not eliminated by DCE, trigger a warning in ba...

5.5CVSS6.7AI score0.00245EPSS
SaveExploits0References3Affected Software1
CVE
CVE
added 2025/03/27 4:37 p.m.113 views

CVE-2021-4454

CVE-2021-4454 affects the Linux kernel CAN/J1939 subsystem. In concurrent paths, j1939_session_deactivate() can be invoked with a session ref-count

7.5CVSS6.3AI score0.00569EPSS
SaveExploits0References5Affected Software1
NVD
NVD
added 2025/03/27 3:15 p.m.16 views

CVE-2025-21889

In the Linux kernel, the following vulnerability has been resolved: perf/core: Add RCU read lock protection to perfiteratectx The perfiteratectx function performs RCU list traversal but currently lacks RCU read lock protection. This causes lockdep warnings when running perf probe with unshare1...

7.8CVSS0.00199EPSS
SaveExploits0References4
Rows per page
Query Builder