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

exploitDog

rocky логотип

RLSA-2026:47017

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

Описание

Important: kernel security, bug fix, and enhancement update

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

Security Fix(es):

  • kernel: net: bridge: use a stable FDB dst snapshot in RCU readers (CVE-2026-46086)

  • kernel: ipv6: fix possible UAF in icmpv6_rcv() (CVE-2026-53006)

  • kernel: tipc: fix double-free in tipc_buf_append() (CVE-2026-52993)

  • kernel: iommu/vt-d: Avoid NULL pointer dereference or refcount corruption (CVE-2026-53281)

Bug Fix(es) and Enhancement(s):

  • rxrpc: Address CVE-2026-43500 [rhel-10.2.z] (JIRA:Rocky Linux-178254)

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-coreaarch64211.40.1.el10_2kernel-core-6.12.0-211.40.1.el10_2.aarch64.rpm
kernel-64k-modules-coreaarch64211.40.1.el10_2kernel-64k-modules-core-6.12.0-211.40.1.el10_2.aarch64.rpm
kernel-modules-extra-matchedaarch64211.40.1.el10_2kernel-modules-extra-matched-6.12.0-211.40.1.el10_2.aarch64.rpm
kernel-debugaarch64211.40.1.el10_2kernel-debug-6.12.0-211.40.1.el10_2.aarch64.rpm
kernel-toolsaarch64211.40.1.el10_2kernel-tools-6.12.0-211.40.1.el10_2.aarch64.rpm
kernel-tools-libsaarch64211.40.1.el10_2kernel-tools-libs-6.12.0-211.40.1.el10_2.aarch64.rpm
kernel-modules-coreaarch64211.40.1.el10_2kernel-modules-core-6.12.0-211.40.1.el10_2.aarch64.rpm
kernel-64k-modulesaarch64211.40.1.el10_2kernel-64k-modules-6.12.0-211.40.1.el10_2.aarch64.rpm
kernelaarch64211.40.1.el10_2kernel-6.12.0-211.40.1.el10_2.aarch64.rpm
kernel-debug-modulesaarch64211.40.1.el10_2kernel-debug-modules-6.12.0-211.40.1.el10_2.aarch64.rpm

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

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

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

ELSA-2026-47017: kernel security, bug fix, and enhancement update (IMPORTANT)

CVSS3: 5.5
ubuntu
2 месяца назад

In the Linux kernel, the following vulnerability has been resolved: net: bridge: use a stable FDB dst snapshot in RCU readers Local FDB entries can be rewritten in place by `fdb_delete_local()`, which updates `f->dst` to another port or to `NULL` while keeping the entry alive. Several bridge RCU readers inspect `f->dst`, including `br_fdb_fillbuf()` through the `brforward_read()` sysfs path. These readers currently load `f->dst` multiple times and can therefore observe inconsistent values across the check and later dereference. In `br_fdb_fillbuf()`, this means a concurrent local-FDB update can change `f->dst` after the NULL check and before the `port_no` dereference, leading to a NULL-ptr-deref. Fix this by taking a single `READ_ONCE()` snapshot of `f->dst` in each affected RCU reader and using that snapshot for the rest of the access sequence. Also publish the in-place `f->dst` updates in `fdb_delete_local()` with `WRITE_ONCE()` so the readers and writer use matching access patter...

CVSS3: 5.5
redhat
2 месяца назад

In the Linux kernel, the following vulnerability has been resolved: net: bridge: use a stable FDB dst snapshot in RCU readers Local FDB entries can be rewritten in place by `fdb_delete_local()`, which updates `f->dst` to another port or to `NULL` while keeping the entry alive. Several bridge RCU readers inspect `f->dst`, including `br_fdb_fillbuf()` through the `brforward_read()` sysfs path. These readers currently load `f->dst` multiple times and can therefore observe inconsistent values across the check and later dereference. In `br_fdb_fillbuf()`, this means a concurrent local-FDB update can change `f->dst` after the NULL check and before the `port_no` dereference, leading to a NULL-ptr-deref. Fix this by taking a single `READ_ONCE()` snapshot of `f->dst` in each affected RCU reader and using that snapshot for the rest of the access sequence. Also publish the in-place `f->dst` updates in `fdb_delete_local()` with `WRITE_ONCE()` so the readers and writer use matching access patter...

CVSS3: 5.5
nvd
2 месяца назад

In the Linux kernel, the following vulnerability has been resolved: net: bridge: use a stable FDB dst snapshot in RCU readers Local FDB entries can be rewritten in place by `fdb_delete_local()`, which updates `f->dst` to another port or to `NULL` while keeping the entry alive. Several bridge RCU readers inspect `f->dst`, including `br_fdb_fillbuf()` through the `brforward_read()` sysfs path. These readers currently load `f->dst` multiple times and can therefore observe inconsistent values across the check and later dereference. In `br_fdb_fillbuf()`, this means a concurrent local-FDB update can change `f->dst` after the NULL check and before the `port_no` dereference, leading to a NULL-ptr-deref. Fix this by taking a single `READ_ONCE()` snapshot of `f->dst` in each affected RCU reader and using that snapshot for the rest of the access sequence. Also publish the in-place `f->dst` updates in `fdb_delete_local()` with `WRITE_ONCE()` so the readers and writer use matching access patte

CVSS3: 7
msrc
2 месяца назад

net: bridge: use a stable FDB dst snapshot in RCU readers