CVE-2022-49635
- EPSS 0.12%
- 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.11%
- 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-49616
- EPSS 0.08%
- 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.07%
- 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.13%
- 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-49622
- EPSS 0.08%
- Veröffentlicht 26.02.2025 07:01:37
- Zuletzt bearbeitet 24.03.2025 19:48:44
In the Linux kernel, the following vulnerability has been resolved: netfilter: nf_tables: avoid skb access on nf_stolen When verdict is NF_STOLEN, the skb might have been freed. When tracing is enabled, this can result in a use-after-free: 1. acce...
CVE-2022-49623
- EPSS 0.01%
- 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: powerpc/xive/spapr: correct bitmap allocation size kasan detects access beyond the end of the xibm->bitmap allocation: BUG: KASAN: slab-out-of-bounds in _find_first_zero_bit+0x40/...
CVE-2022-49610
- EPSS 0.07%
- Veröffentlicht 26.02.2025 07:01:36
- Zuletzt bearbeitet 23.10.2025 12:08:23
In the Linux kernel, the following vulnerability has been resolved: KVM: VMX: Prevent RSB underflow before vmenter On VMX, there are some balanced returns between the time the guest's SPEC_CTRL value is written, and the vmenter. Balanced returns (...
CVE-2022-49615
- EPSS 0.13%
- Veröffentlicht 26.02.2025 07:01:36
- Zuletzt bearbeitet 01.10.2025 20:16:56
In the Linux kernel, the following vulnerability has been resolved: ASoC: rt711-sdca: fix kernel NULL pointer dereference when IO error The initial settings will be written before the codec probe function. But, the rt711->component doesn't be assig...
CVE-2022-49599
- EPSS 0.05%
- Veröffentlicht 26.02.2025 07:01:35
- Zuletzt bearbeitet 01.10.2025 20:16:54
In the Linux kernel, the following vulnerability has been resolved: tcp: Fix data-races around sysctl_tcp_l3mdev_accept. While reading sysctl_tcp_l3mdev_accept, it can be changed concurrently. Thus, we need to add READ_ONCE() to its readers.