Lucene search
+L

13161 matches found

Cvelist
Cvelist
added 2025/05/01 2:09 p.m.16 views

CVE-2022-49779 kprobes: Skip clearing aggrprobe's post_handler in kprobe-on-ftrace case

In the Linux kernel, the following vulnerability has been resolved: kprobes: Skip clearing aggrprobe's posthandler in kprobe-on-ftrace case In unregisterkprobetop, if the currently unregistered probe has posthandler but other child probes of the aggrprobe do not have posthandler, the posthandler ...

0.00209EPSS
SaveExploits0References5
CVE
CVE
added 2025/05/01 2:09 p.m.102 views

CVE-2022-49779

CVE-2022-49779 affects the Linux kernel kprobes subsystem, specifically the kprobe-on-ftrace path. Description: when unregistering an aggrprobe, if the currently unregistered probe has a post_handler but sibling probes do not, the aggrprobe’s post_handler may be cleared. If the probe is ftrace-ba...

7.8CVSS6.4AI score0.00209EPSS
SaveExploits0References5Affected Software1
OSV
OSV
added 2025/05/01 2:09 p.m.13 views

CVE-2022-49777 Input: i8042 - fix leaking of platform device on module removal

In the Linux kernel, the following vulnerability has been resolved: Input: i8042 - fix leaking of platform device on module removal Avoid resetting the module-wide i8042platformdevice pointer in i8042probe or i8042remove, so that the device can be properly destroyed by i8042exit on module unload...

6.1AI score
SaveExploits0References9
OSV
OSV
added 2025/05/01 2:09 p.m.14 views

CVE-2022-49778 arm64/mm: fix incorrect file_map_count for non-leaf pmd/pud

In the Linux kernel, the following vulnerability has been resolved: arm64/mm: fix incorrect filemapcount for non-leaf pmd/pud The page table check trigger BUGON unexpectedly when collapse hugepage: ------------ cut here ------------ kernel BUG at mm/pagetablecheck.c:82! Internal error: Oops - BUG...

6.2AI score
SaveExploits0References5
Cvelist
Cvelist
added 2025/05/01 2:09 p.m.40 views

CVE-2022-49776 macvlan: enforce a consistent minimal mtu

In the Linux kernel, the following vulnerability has been resolved: macvlan: enforce a consistent minimal mtu macvlan should enforce a minimal mtu of 68, even at link creation. This patch avoids the current behavior which could lead to crashes in ipv6 stack if the link is brought up $ ip link add...

0.00207EPSS
SaveExploits0References7
CVE
CVE
added 2025/05/01 2:09 p.m.106 views

CVE-2022-49776

CVE-2022-49776 affects the Linux kernel macvlan code; it fixes a low-level issue by enforcing a minimal MTU of 68 at link creation to prevent crashes in the IPv6 stack. The advisory notes that macvlan0 should reject mtu values below the device minimum (e.g., 67 rejected, 68 accepted), with the fi...

5.5CVSS6.4AI score0.00207EPSS
SaveExploits0References7Affected Software1
OSV
OSV
added 2025/05/01 2:09 p.m.26 views

CVE-2022-49776 macvlan: enforce a consistent minimal mtu

In the Linux kernel, the following vulnerability has been resolved: macvlan: enforce a consistent minimal mtu macvlan should enforce a minimal mtu of 68, even at link creation. This patch avoids the current behavior which could lead to crashes in ipv6 stack if the link is brought up $ ip link add...

6AI score
SaveExploits0References10
CVE
CVE
added 2025/05/01 2:09 p.m.86 views

CVE-2022-49774

CVE-2022-49774 affects the Linux kernel (KVM: x86/xen) and concerns eventfd error handling in kvm_xen_eventfd_assign(). The root cause was calling eventfd_ctx_put() on error; a patch introduces a new goto target to handle the error instead. The documents confirm the fix has been applied and refer...

5.5CVSS6.6AI score0.00159EPSS
SaveExploits0References2Affected Software1
CVE
CVE
added 2025/05/01 2:09 p.m.105 views

CVE-2022-49775

CVE-2022-49775 (Linux kernel) affects the tcp_cdg congestion control. The advisory notes that when MPTCP calls tcp_disconnect() on an already-disconnected flow under CDG, it may trigger a double-free in the SLAB allocator. The vulnerability arises from the ability to call tcp_cdg_release() multip...

7.8CVSS6.5AI score0.00198EPSS
SaveExploits0References8Affected Software1
CVE
CVE
added 2025/05/01 2:09 p.m.104 views

CVE-2022-49769

CVE-2022-49769 corresponds to a Linux kernel fix for the gfs2 filesystem: after reading a superblock, the sb_bsize_shift field is now validated to match the expected value, preventing shift/out-of-bounds and related mount errors. The available details describe the root cause (unchecked sb_bsize_s...

5.5CVSS6.5AI score0.00207EPSS
SaveExploits0References8Affected Software1
OSV
OSV
added 2025/05/01 2:09 p.m.10 views

CVE-2022-49767 9p/trans_fd: always use O_NONBLOCK read/write

In the Linux kernel, the following vulnerability has been resolved: 9p/transfd: always use ONONBLOCK read/write syzbot is reporting hung task at p9fdclose 1, for p9muxpollstop from p9conndestroy from p9fdclose is failing to interrupt already started kernelread from p9fdread from p9readwork and/or...

6AI score
SaveExploits0References11
CVE
CVE
added 2025/05/01 2:09 p.m.103 views

CVE-2022-49768

CVE-2022-49768 is associated with the Linux kernel 9p subsystem, specifically in trans_fd/p9_conn_cancel, where a double-lock issue was reported by syzbot and is mitigated by dropping the client lock earlier after requests move to the local list. Public sources in connected documents (Astra Linux...

7.5CVSS6.5AI score0.00367EPSS
SaveExploits0References8Affected Software1
OSV
OSV
added 2025/05/01 2:09 p.m.17 views

CVE-2022-49768 9p: trans_fd/p9_conn_cancel: drop client lock earlier

In the Linux kernel, the following vulnerability has been resolved: 9p: transfd/p9conncancel: drop client lock earlier syzbot reported a double-lock here and we no longer need this lock after requests have been moved off to local list: just drop the lock earlier...

7.5CVSS5.8AI score
SaveExploits0References11
CVE
CVE
added 2025/05/01 2:09 p.m.97 views

CVE-2022-49767

CVE-2022-49767 affects the Linux kernel 9p/trans_fd path. The issue arises because p9_mux_poll_stop() could fail to interrupt blocking kernel_read()/kernel_write() on pipes due to fd_open() not setting O_NONBLOCK, whereas socket paths already use O_NONBLOCK. A minimal patch makes O_NONBLOCK alway...

5.5CVSS6.5AI score0.00191EPSS
SaveExploits0References8Affected Software1
Cvelist
Cvelist
added 2025/05/01 2:09 p.m.29 views

CVE-2022-49768 9p: trans_fd/p9_conn_cancel: drop client lock earlier

In the Linux kernel, the following vulnerability has been resolved: 9p: transfd/p9conncancel: drop client lock earlier syzbot reported a double-lock here and we no longer need this lock after requests have been moved off to local list: just drop the lock earlier...

7.5CVSS0.00367EPSS
SaveExploits0References8
OSV
OSV
added 2025/05/01 2:09 p.m.13 views

CVE-2022-49766 netlink: Bounds-check struct nlmsgerr creation

In the Linux kernel, the following vulnerability has been resolved: netlink: Bounds-check struct nlmsgerr creation In preparation for FORTIFYSOURCE doing bounds-check on memcpy, switch from nlmsgput to nlmsgput, and explain the bounds check for dealing with the memcpy across a composite flexible...

5AI score
SaveExploits0References5
OSV
OSV
added 2025/05/01 2:09 p.m.16 views

CVE-2022-49764 bpf: Prevent bpf program recursion for raw tracepoint probes

In the Linux kernel, the following vulnerability has been resolved: bpf: Prevent bpf program recursion for raw tracepoint probes We got report from sysbot 1 about warnings that were caused by bpf program attached to contentionbegin raw tracepoint triggering the same tracepoint by using...

6.2AI score
SaveExploits0References5
CVE
CVE
added 2025/05/01 2:09 p.m.102 views

CVE-2022-49764

CVE-2022-49764 (Linux kernel) : A vulnerability in BPF raw tracepoint handling allows a BPF program to recursion-trigget the same tracepoint via bpf_trace_printk, causing spinlock contention paths to recurse and potentially affecting tracing by taking the slow path. Root cause: a BPF program atta...

5.5CVSS6.8AI score0.00175EPSS
SaveExploits0References2Affected Software1
OSV
OSV
added 2025/05/01 2:09 p.m.14 views

CVE-2022-49762 ntfs: check overflow when iterating ATTR_RECORDs

In the Linux kernel, the following vulnerability has been resolved: ntfs: check overflow when iterating ATTRRECORDs Kernel iterates over ATTRRECORDs in mft record in ntfsattrfind. Because the ATTRRECORDs are next to each other, kernel can get the next ATTRRECORD from end address of current...

5.9AI score
SaveExploits0References11
NVD
NVD
added 2025/05/01 1:15 p.m.43 views

CVE-2025-37759

In the Linux kernel, the following vulnerability has been resolved: ublk: fix handling recovery & reissue in ublkabortqueue Commit 8284066946e6 "ublk: grab request reference when the request is handled by userspace" doesn't grab request reference in case of recovery reissue. Then the request can ...

5.5CVSS0.00176EPSS
SaveExploits0References4
Rows per page
Query Builder