Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

rocky логотип

RLSA-2026:25191

Опубликовано: 13 июн. 2026
Источник: rocky
Оценка: Critical

Описание

Critical: kernel security update

The kernel packages contain the Linux kernel, the core of any Linux operating system.

Security Fix(es):

  • kernel: Linux kernel: Use-after-free in bonding driver leads to denial of service (CVE-2026-31419)

  • kernel: Linux kernel: Denial of Service in erofs filesystem (CVE-2026-31467)

  • kernel: can: raw: fix ro->uniq use-after-free in raw_rcv() (CVE-2026-31532)

  • kernel: ALSA: 6fire: fix use-after-free on disconnect (CVE-2026-31581)

  • kernel: ip6_tunnel: clear skb2->cb[] in ip4ip6_err() (CVE-2026-43037)

  • kernel: ipv6: rpl: reserve mac_len headroom when recompressed SRH grows (CVE-2026-43501)

  • kernel: selinux: fix overlayfs mmap() and mprotect() access checks (CVE-2026-46054)

For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.

Затронутые продукты

  • Rocky Linux 10

НаименованиеАрхитектураРелизRPM
kernel-debug-modules-extraaarch64211.22.1.el10_2kernel-debug-modules-extra-6.12.0-211.22.1.el10_2.aarch64.rpm
kernel-64k-coreaarch64211.22.1.el10_2kernel-64k-core-6.12.0-211.22.1.el10_2.aarch64.rpm
kernel-debug-coreaarch64211.22.1.el10_2kernel-debug-core-6.12.0-211.22.1.el10_2.aarch64.rpm
kernel-modules-coreaarch64211.22.1.el10_2kernel-modules-core-6.12.0-211.22.1.el10_2.aarch64.rpm
kernel-64k-modules-coreaarch64211.22.1.el10_2kernel-64k-modules-core-6.12.0-211.22.1.el10_2.aarch64.rpm
kernel-64k-modules-extraaarch64211.22.1.el10_2kernel-64k-modules-extra-6.12.0-211.22.1.el10_2.aarch64.rpm
kernel-uki-virt-addonsaarch64211.22.1.el10_2kernel-uki-virt-addons-6.12.0-211.22.1.el10_2.aarch64.rpm
kernel-debuginfo-common-aarch64aarch64211.22.1.el10_2kernel-debuginfo-common-aarch64-6.12.0-211.22.1.el10_2.aarch64.rpm
kernelaarch64211.22.1.el10_2kernel-6.12.0-211.22.1.el10_2.aarch64.rpm
kernel-modulesaarch64211.22.1.el10_2kernel-modules-6.12.0-211.22.1.el10_2.aarch64.rpm

Показывать по

Связанные уязвимости

oracle-oval
21 день назад

ELSA-2026-25191: kernel security update (CRITICAL)

rocky
около 2 месяцев назад

Important: kernel security update

oracle-oval
около 1 месяца назад

ELSA-2026-25217: kernel security update (IMPORTANT)

suse-cvrf
около 2 месяцев назад

Security update for the Linux Kernel

CVSS3: 9.8
ubuntu
3 месяца назад

In the Linux kernel, the following vulnerability has been resolved: ip6_tunnel: clear skb2->cb[] in ip4ip6_err() Oskar Kjos reported the following problem. ip4ip6_err() calls icmp_send() on a cloned skb whose cb[] was written by the IPv6 receive path as struct inet6_skb_parm. icmp_send() passes IPCB(skb2) to __ip_options_echo(), which interprets that cb[] region as struct inet_skb_parm (IPv4). The layouts differ: inet6_skb_parm.nhoff at offset 14 overlaps inet_skb_parm.opt.rr, producing a non-zero rr value. __ip_options_echo() then reads optlen from attacker-controlled packet data at sptr[rr+1] and copies that many bytes into dopt->__data, a fixed 40-byte stack buffer (IP_OPTIONS_DATA_FIXED_SIZE). To fix this we clear skb2->cb[], as suggested by Oskar Kjos. Also add minimal IPv4 header validation (version == 4, ihl >= 5).