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

exploitDog

rocky логотип

RLSA-2026:68531

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

Описание

Important: kernel security update

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

Security Fix(es):

  • kernel: ipvlan: Make the addrs_lock be per port (CVE-2026-23103)

  • kernel: xfrm: hold dev ref until after transport_finish NF_HOOK (CVE-2026-31663)

  • kernel: netfilter: nf_conntrack_h323: fix OOB read in decode_choice() (CVE-2026-43233)

  • kernel: ipv6: prevent possible UaF in addrconf_permanent_addr() (CVE-2026-43339)

  • kernel: inet: RAW sockets using IPPROTO_RAW MUST drop incoming ICMP (CVE-2026-46266)

  • kernel: flow_dissector: do not dissect PPPoE PFC frames (CVE-2026-46306)

  • kernel: netfilter: xt_policy: fix strict mode inbound policy matching (CVE-2026-52920)

  • kernel: ppp: require CAP_NET_ADMIN in target netns for unattached ioctls (CVE-2026-53075)

  • kernel: ipv6: sit: reload inner IPv6 header after GSO offloads (CVE-2026-53228)

  • kernel: IB/isert: Reject login PDUs shorter than ISER_HEADERS_LEN (CVE-2026-53176)

  • kernel: netfilter: require Ethernet MAC header before using eth_hdr() (CVE-2026-53131)

  • kernel: netfilter: conntrack_irc: fix possible out-of-bounds read (CVE-2026-53268)

  • kernel: xfrm: policy: fix use-after-free on inexact bin in xfrm_policy_bysel_ctx() (CVE-2026-53239)

  • kernel: ALSA: timer: Fix UAF at snd_timer_user_params() (CVE-2026-53192)

  • kernel: net: guard timestamp cmsgs to real error queue skbs (CVE-2026-53223)

  • kernel: ipv6: mcast: Fix use-after-free when processing MLD queries (CVE-2026-53275)

  • kernel: ipv4: free net->ipv4.sysctl_local_reserved_ports after unregister_net_sysctl_table() (CVE-2026-64002)

  • kernel: ip6: vti: Use ip6_tnl.net in vti6_siocdevprivate() (CVE-2026-63921)

  • kernel: xfrm: input: hold netns during deferred transport reinjection (CVE-2026-63919)

  • kernel: ip6: vti: Use ip6_tnl.net in vti6_changelink() (CVE-2026-63917)

  • kernel: Linux kernel SLIP: Out-of-bounds write due to race condition during MTU change (CVE-2026-68143)

  • kernel: xfrm: fix stale skb->prev after async crypto steals a GSO segment (CVE-2026-68426)

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 8

НаименованиеАрхитектураРелизRPM
bpftoolaarch64553.164.1.el8_10bpftool-4.18.0-553.164.1.el8_10.aarch64.rpm
kernelaarch64553.164.1.el8_10kernel-4.18.0-553.164.1.el8_10.aarch64.rpm
kernel-abi-stablelistsnoarch553.164.1.el8_10kernel-abi-stablelists-4.18.0-553.164.1.el8_10.noarch.rpm
kernel-coreaarch64553.164.1.el8_10kernel-core-4.18.0-553.164.1.el8_10.aarch64.rpm
kernel-debugaarch64553.164.1.el8_10kernel-debug-4.18.0-553.164.1.el8_10.aarch64.rpm
kernel-debug-coreaarch64553.164.1.el8_10kernel-debug-core-4.18.0-553.164.1.el8_10.aarch64.rpm
kernel-debug-develaarch64553.164.1.el8_10kernel-debug-devel-4.18.0-553.164.1.el8_10.aarch64.rpm
kernel-debuginfo-common-aarch64aarch64553.164.1.el8_10kernel-debuginfo-common-aarch64-4.18.0-553.164.1.el8_10.aarch64.rpm
kernel-debug-modulesaarch64553.164.1.el8_10kernel-debug-modules-4.18.0-553.164.1.el8_10.aarch64.rpm
kernel-debug-modules-extraaarch64553.164.1.el8_10kernel-debug-modules-extra-4.18.0-553.164.1.el8_10.aarch64.rpm

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

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

oracle-oval
7 дней назад

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

CVSS3: 7.8
ubuntu
8 месяцев назад

In the Linux kernel, the following vulnerability has been resolved: ipvlan: Make the addrs_lock be per port Make the addrs_lock be per port, not per ipvlan dev. Initial code seems to be written in the assumption, that any address change must occur under RTNL. But it is not so for the case of IPv6. So 1) Introduce per-port addrs_lock. 2) It was needed to fix places where it was forgotten to take lock (ipvlan_open/ipvlan_close) This appears to be a very minor problem though. Since it's highly unlikely that ipvlan_add_addr() will be called on 2 CPU simultaneously. But nevertheless, this could cause: 1) False-negative of ipvlan_addr_busy(): one interface iterated through all port->ipvlans + ipvlan->addrs under some ipvlan spinlock, and another added IP under its own lock. Though this is only possible for IPv6, since looks like only ipvlan_addr6_event() can be called without rtnl_lock. 2) Race since ipvlan_ht_addr_add(port) is called under different ipvlan->addrs_lock locks This should n...

CVSS3: 4.7
redhat
8 месяцев назад

In the Linux kernel, the following vulnerability has been resolved: ipvlan: Make the addrs_lock be per port Make the addrs_lock be per port, not per ipvlan dev. Initial code seems to be written in the assumption, that any address change must occur under RTNL. But it is not so for the case of IPv6. So 1) Introduce per-port addrs_lock. 2) It was needed to fix places where it was forgotten to take lock (ipvlan_open/ipvlan_close) This appears to be a very minor problem though. Since it's highly unlikely that ipvlan_add_addr() will be called on 2 CPU simultaneously. But nevertheless, this could cause: 1) False-negative of ipvlan_addr_busy(): one interface iterated through all port->ipvlans + ipvlan->addrs under some ipvlan spinlock, and another added IP under its own lock. Though this is only possible for IPv6, since looks like only ipvlan_addr6_event() can be called without rtnl_lock. 2) Race since ipvlan_ht_addr_add(port) is called under different ipvlan->addrs_lock locks This should n...

CVSS3: 7.8
nvd
8 месяцев назад

In the Linux kernel, the following vulnerability has been resolved: ipvlan: Make the addrs_lock be per port Make the addrs_lock be per port, not per ipvlan dev. Initial code seems to be written in the assumption, that any address change must occur under RTNL. But it is not so for the case of IPv6. So 1) Introduce per-port addrs_lock. 2) It was needed to fix places where it was forgotten to take lock (ipvlan_open/ipvlan_close) This appears to be a very minor problem though. Since it's highly unlikely that ipvlan_add_addr() will be called on 2 CPU simultaneously. But nevertheless, this could cause: 1) False-negative of ipvlan_addr_busy(): one interface iterated through all port->ipvlans + ipvlan->addrs under some ipvlan spinlock, and another added IP under its own lock. Though this is only possible for IPv6, since looks like only ipvlan_addr6_event() can be called without rtnl_lock. 2) Race since ipvlan_ht_addr_add(port) is called under different ipvlan->addrs_lock locks This sh

CVSS3: 7.8
debian
8 месяцев назад

In the Linux kernel, the following vulnerability has been resolved: i ...