CVE-2022-49633
- EPSS 0.03%
- Veröffentlicht 26.02.2025 07:01:38
- Zuletzt bearbeitet 01.10.2025 20:16:59
In the Linux kernel, the following vulnerability has been resolved: icmp: Fix data-races around sysctl_icmp_echo_enable_probe. While reading sysctl_icmp_echo_enable_probe, it can be changed concurrently. Thus, we need to add READ_ONCE() to its rea...
CVE-2022-49634
- EPSS 0.06%
- Veröffentlicht 26.02.2025 07:01:38
- Zuletzt bearbeitet 01.10.2025 20:16:59
In the Linux kernel, the following vulnerability has been resolved: sysctl: Fix data-races in proc_dou8vec_minmax(). A sysctl variable is accessed concurrently, and there is always a chance of data-race. So, all readers and writers need some basic...
CVE-2022-49635
- EPSS 0.05%
- Veröffentlicht 26.02.2025 07:01:38
- Zuletzt bearbeitet 23.10.2025 12:09:27
In the Linux kernel, the following vulnerability has been resolved: drm/i915/selftests: fix subtraction overflow bug On some machines hole_end can be small enough to cause subtraction overflow. On the other side (addr + 2 * min_alignment) can overf...
CVE-2022-49636
- EPSS 0.05%
- Veröffentlicht 26.02.2025 07:01:38
- Zuletzt bearbeitet 10.04.2025 13:15:43
In the Linux kernel, the following vulnerability has been resolved: vlan: fix memory leak in vlan_newlink() Blamed commit added back a bug I fixed in commit 9bbd917e0bec ("vlan: fix memory leak in vlan_dev_set_egress_priority") If a memory allocat...
CVE-2022-49637
- EPSS 0.03%
- Veröffentlicht 26.02.2025 07:01:38
- Zuletzt bearbeitet 01.10.2025 20:16:59
In the Linux kernel, the following vulnerability has been resolved: ipv4: Fix a data-race around sysctl_fib_sync_mem. While reading sysctl_fib_sync_mem, it can be changed concurrently. So, we need to add READ_ONCE() to avoid a data-race.
CVE-2022-49616
- EPSS 0.03%
- Veröffentlicht 26.02.2025 07:01:37
- Zuletzt bearbeitet 23.10.2025 12:08:47
In the Linux kernel, the following vulnerability has been resolved: ASoC: rt7*-sdw: harden jack_detect_handler Realtek headset codec drivers typically check if the card is instantiated before proceeding with the jack detection. The rt700, rt711 an...
CVE-2022-49617
- EPSS 0.03%
- Veröffentlicht 26.02.2025 07:01:37
- Zuletzt bearbeitet 23.10.2025 12:08:55
In the Linux kernel, the following vulnerability has been resolved: ASoC: Intel: sof_sdw: handle errors on card registration If the card registration fails, typically because of deferred probes, the device properties added for headset codecs are no...
CVE-2022-49618
- EPSS 0.05%
- Veröffentlicht 26.02.2025 07:01:37
- Zuletzt bearbeitet 01.10.2025 20:16:57
In the Linux kernel, the following vulnerability has been resolved: pinctrl: aspeed: Fix potential NULL dereference in aspeed_pinmux_set_mux() pdesc could be null but still dereference pdesc->name and it will lead to a null pointer access. So we mo...
CVE-2022-49619
- EPSS 0.03%
- Veröffentlicht 26.02.2025 07:01:37
- Zuletzt bearbeitet 01.10.2025 20:16:57
In the Linux kernel, the following vulnerability has been resolved: net: sfp: fix memory leak in sfp_probe() sfp_probe() allocates a memory chunk from sfp with sfp_alloc(). When devm_add_action() fails, sfp is not freed, which leads to a memory lea...
CVE-2022-49620
- EPSS 0.03%
- Veröffentlicht 26.02.2025 07:01:37
- Zuletzt bearbeitet 01.10.2025 20:16:57
In the Linux kernel, the following vulnerability has been resolved: net: tipc: fix possible refcount leak in tipc_sk_create() Free sk in case tipc_sk_insert() fails.