Lucene search
+L

13114 matches found

OSV
OSV
added 2025/06/18 11:3 a.m.8 views

CVE-2022-50213 netfilter: nf_tables: do not allow SET_ID to refer to another table

In the Linux kernel, the following vulnerability has been resolved: netfilter: nftables: do not allow SETID to refer to another table When doing lookups for sets on the same batch by using its ID, a set from a different table can be used. Then, when the table is removed, a reference to the set ma...

7.8CVSS5.4AI score
SaveExploits0References10
OSV
OSV
added 2025/06/18 11:3 a.m.10 views

CVE-2022-50212 netfilter: nf_tables: do not allow CHAIN_ID to refer to another table

In the Linux kernel, the following vulnerability has been resolved: netfilter: nftables: do not allow CHAINID to refer to another table When doing lookups for chains on the same batch by using its ID, a chain from a different table can be used. If a rule is added to a table but refers to a chain ...

7.8CVSS5.7AI score
SaveExploits0References8
CVE
CVE
added 2025/06/18 11:3 a.m.121 views

CVE-2022-50212

CVE-2022-50212 affects the Linux kernel netfilter nf_tables subsystem. The vulnerability arises when looking up chains by ID without ensuring the chain belongs to the same table; a chain from another table can be linked in, and removing the source table can leave a rule connected to the wrong cha...

7.8CVSS6.5AI score0.00201EPSS
SaveExploits0References5Affected Software1
OSV
OSV
added 2025/06/18 11:3 a.m.7 views

CVE-2022-50211 md-raid10: fix KASAN warning

In the Linux kernel, the following vulnerability has been resolved: md-raid10: fix KASAN warning There's a KASAN warning in raid10removedisk when running the lvm test lvconvert-raid-reshape.sh. We fix this warning by verifying that the value "number" is valid. BUG: KASAN: slab-out-of-bounds in...

5.6AI score
SaveExploits0References12
Cvelist
Cvelist
added 2025/06/18 11:3 a.m.16 views

CVE-2022-50210 MIPS: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK

In the Linux kernel, the following vulnerability has been resolved: MIPS: cpuinfo: Fix a warning for CONFIGCPUMASKOFFSTACK When CONFIGCPUMASKOFFSTACK and CONFIGDEBUGPERCPUMAPS is selected, cpumaxbitswarn generates a runtime warning similar as below while we show /proc/cpuinfo. Fix this by using...

0.00203EPSS
SaveExploits0References9
CVE
CVE
added 2025/06/18 11:3 a.m.46 views

CVE-2022-50210

CVE-2022-50210 concerns the Linux kernel on MIPS where a warning is produced in /proc/cpuinfo due to cpu_max_bits_warn() iterating CPUs with NR_CPUS when CONFIG_CPUMASK_OFFSTACK and CONFIG_DEBUG_PER_CPU_MAPS are enabled. The root cause is using NR_CPUS as the iteration limit; the fix switches to ...

5.5CVSS6.5AI score0.00203EPSS
SaveExploits0References9Affected Software1
OSV
OSV
added 2025/06/18 11:3 a.m.8 views

CVE-2022-50210 MIPS: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK

In the Linux kernel, the following vulnerability has been resolved: MIPS: cpuinfo: Fix a warning for CONFIGCPUMASKOFFSTACK When CONFIGCPUMASKOFFSTACK and CONFIGDEBUGPERCPUMAPS is selected, cpumaxbitswarn generates a runtime warning similar as below while we show /proc/cpuinfo. Fix this by using...

6.2AI score
SaveExploits0References12
CVE
CVE
added 2025/06/18 11:3 a.m.79 views

CVE-2022-50209

The CVE-2022-50209 issue in the Linux kernel concerns a refcount leak in meson_mx_socinfo_init. The root cause is that of_find_matching_node() can return a node pointer with an incremented refcount, requiring an of_node_put() when the reference is no longer needed. The fix adds the missing of_nod...

5.5CVSS6.4AI score0.00202EPSS
SaveExploits0References7Affected Software1
CVE
CVE
added 2025/06/18 11:3 a.m.81 views

CVE-2022-50208

CVE-2022-50208 affects the Linux kernel, specifically the soc: amlogic driver code for meson-secure-pwrc.c. In meson_secure_pwrc_probe(), there is a refcount leak on one failure path, which is the root cause described in the Initial Document. The vulnerability is fixed in the same area (refcount ...

5.5CVSS6.5AI score0.00196EPSS
SaveExploits0References5Affected Software1
OSV
OSV
added 2025/06/18 11:3 a.m.11 views

CVE-2022-50208 soc: amlogic: Fix refcount leak in meson-secure-pwrc.c

In the Linux kernel, the following vulnerability has been resolved: soc: amlogic: Fix refcount leak in meson-secure-pwrc.c In mesonsecurepwrcprobe, there is a refcount leak in one fail path...

5.9AI score
SaveExploits0References8
OSV
OSV
added 2025/06/18 11:3 a.m.13 views

CVE-2022-50207 ARM: bcm: Fix refcount leak in bcm_kona_smc_init

In the Linux kernel, the following vulnerability has been resolved: ARM: bcm: Fix refcount leak in bcmkonasmcinit offindmatchingnode returns a node pointer with refcount incremented, we should use ofnodeput on it when not need anymore. Add missing ofnodeput to avoid refcount leak...

5.9AI score
SaveExploits0References11
Cvelist
Cvelist
added 2025/06/18 11:3 a.m.24 views

CVE-2022-50206 arm64: fix oops in concurrently setting insn_emulation sysctls

In the Linux kernel, the following vulnerability has been resolved: arm64: fix oops in concurrently setting insnemulation sysctls emulationprochandler changes table-data for procdointvecminmax and can generate the following Oops if called concurrently with itself: | Unable to handle kernel NULL...

0.00211EPSS
SaveExploits0References8
OSV
OSV
added 2025/06/18 11:3 a.m.8 views

CVE-2022-50206 arm64: fix oops in concurrently setting insn_emulation sysctls

In the Linux kernel, the following vulnerability has been resolved: arm64: fix oops in concurrently setting insnemulation sysctls emulationprochandler changes table-data for procdointvecminmax and can generate the following Oops if called concurrently with itself: | Unable to handle kernel NULL...

6.1AI score
SaveExploits0References11
CVE
CVE
added 2025/06/18 11:3 a.m.101 views

CVE-2022-50206

The CVE-2022-50206 issue affects the Linux kernel (ARM64) where emulation_proc_handler() concurrently updates table->data for proc_dointvec_minmax, allowing a NULL pointer dereference Oops. The fix is to keep table->data as &insn->current_mode and to retrieve the insn pointer with contai...

5.5CVSS6.4AI score0.00211EPSS
SaveExploits0References8Affected Software1
OSV
OSV
added 2025/06/18 11:3 a.m.11 views

CVE-2022-50204 ARM: OMAP2+: pdata-quirks: Fix refcount leak bug

In the Linux kernel, the following vulnerability has been resolved: ARM: OMAP2+: pdata-quirks: Fix refcount leak bug In pdataquirksinitclocks, the loop contains offindnodebyname but without corresponding ofnodeput...

6AI score
SaveExploits0References7
CVE
CVE
added 2025/06/18 11:3 a.m.40 views

CVE-2022-50205

The CVE-2022-50205 entry corresponds to a Linux kernel vulnerability in ext2 that adds validity checks for inode counts. The root cause is that inodes stored in the superblock must match the computed value from inodes-per-group, and there must be at least one block worth of inodes per group; thes...

5.5CVSS6.3AI score0.00217EPSS
SaveExploits0References8Affected Software1
OSV
OSV
added 2025/06/18 11:3 a.m.8 views

CVE-2022-50205 ext2: Add more validity checks for inode counts

In the Linux kernel, the following vulnerability has been resolved: ext2: Add more validity checks for inode counts Add checks verifying number of inodes stored in the superblock matches the number computed from number of inodes per group. Also verify we have at least one block worth of inodes pe...

6AI score
SaveExploits0References11
CVE
CVE
added 2025/06/18 11:3 a.m.81 views

CVE-2022-50203

CVE-2022-50203 affects the Linux kernel ARM OMAP2+ display path. The described issue is a refcount leak in omapdss_init_fbdev where of_find_node_by_name() can return a node with an incremented refcount. The recommended action is to call of_node_put() when the node is no longer used to prevent the...

5.5CVSS6.5AI score0.00211EPSS
SaveExploits0References8Affected Software1
OSV
OSV
added 2025/06/18 11:3 a.m.8 views

CVE-2022-50202 PM: hibernate: defer device probing when resuming from hibernation

In the Linux kernel, the following vulnerability has been resolved: PM: hibernate: defer device probing when resuming from hibernation syzbot is reporting hung task at miscopen 1, for there is a race window of AB-BA deadlock which involves probecount variable. Currently waitfordeviceprobe from...

6AI score
SaveExploits0References11
OSV
OSV
added 2025/06/18 11:3 a.m.14 views

CVE-2022-50197 cpufreq: zynq: Fix refcount leak in zynq_get_revision

In the Linux kernel, the following vulnerability has been resolved: cpufreq: zynq: Fix refcount leak in zynqgetrevision offindcompatiblenode returns a node pointer with refcount incremented, we should use ofnodeput on it when done. Add missing ofnodeput to avoid refcount leak...

5.9AI score
SaveExploits0References11
Rows per page
Query Builder