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

exploitDog

rocky логотип

RLSA-2026:1690

Опубликовано: 08 фев. 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: Linux kernel: irqchip/gic-v2m use-after-free vulnerability (CVE-2025-37819)

  • kernel: RDMA/core: Fix "KASAN: slab-use-after-free Read in ib_register_device" problem (CVE-2025-38022)

  • kernel: Linux kernel use-after-free in eventpoll (CVE-2025-38349)

  • kernel: io_uring/msg_ring: ensure io_kiocb freeing is deferred for RCU (CVE-2025-38453)

  • kernel: net/sched: mqprio: fix stack out-of-bounds write in tc entry parsing (CVE-2025-38568)

  • kernel: drm/xe: Fix vm_bind_ioctl double free bug (CVE-2025-38731)

  • kernel: ASoC: Intel: bytcr_rt5640: Fix invalid quirk input mapping (CVE-2025-40154)

  • kernel: net: use dst_dev_rcu() in sk_setup_caps() (CVE-2025-40170)

  • kernel: ipv6: use RCU in ip6_xmit() (CVE-2025-40135)

  • kernel: ipv6: use RCU in ip6_output() (CVE-2025-40158)

  • kernel: Linux kernel: vsock vulnerability may lead to memory corruption (CVE-2025-40248)

  • kernel: mptcp: fix race condition in mptcp_schedule_work() (CVE-2025-40258)

  • kernel: devlink: rate: Unset parent pointer in devl_rate_nodes_destroy (CVE-2025-40251)

  • kernel: Linux kernel: Use-after-free in proc_readdir_de() can lead to privilege escalation or denial of service. (CVE-2025-40271)

  • kernel: Linux kernel: Out-of-bounds write in Bluetooth MGMT can lead to information disclosure and denial of service (CVE-2025-40294)

  • kernel: Linux kernel: Information disclosure and denial of service in Bluetooth HCI event handling (CVE-2025-40301)

  • kernel: Bluetooth: hci_sync: fix race in hci_cmd_sync_dequeue_once (CVE-2025-40318)

  • kernel: net: atlantic: fix fragment overflow handling in RX path (CVE-2025-68301)

  • kernel: Bluetooth: hci_sock: Prevent race in socket write iter and sock bind (CVE-2025-68305)

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-modules-extrax86_64124.31.1.el10_1kernel-modules-extra-6.12.0-124.31.1.el10_1.x86_64.rpm
kernel-debuginfo-common-x86_64x86_64124.31.1.el10_1kernel-debuginfo-common-x86_64-6.12.0-124.31.1.el10_1.x86_64.rpm
kernel-modulesx86_64124.31.1.el10_1kernel-modules-6.12.0-124.31.1.el10_1.x86_64.rpm
kernel-debug-corex86_64124.31.1.el10_1kernel-debug-core-6.12.0-124.31.1.el10_1.x86_64.rpm
kernel-toolsx86_64124.31.1.el10_1kernel-tools-6.12.0-124.31.1.el10_1.x86_64.rpm
kernel-debugx86_64124.31.1.el10_1kernel-debug-6.12.0-124.31.1.el10_1.x86_64.rpm
kernel-debug-modules-extrax86_64124.31.1.el10_1kernel-debug-modules-extra-6.12.0-124.31.1.el10_1.x86_64.rpm
kernel-tools-libsx86_64124.31.1.el10_1kernel-tools-libs-6.12.0-124.31.1.el10_1.x86_64.rpm
kernel-uki-virt-addonsx86_64124.31.1.el10_1kernel-uki-virt-addons-6.12.0-124.31.1.el10_1.x86_64.rpm
kernel-debug-modules-corex86_64124.31.1.el10_1kernel-debug-modules-core-6.12.0-124.31.1.el10_1.x86_64.rpm

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

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

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

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

ubuntu
4 месяца назад

In the Linux kernel, the following vulnerability has been resolved: mptcp: fix race condition in mptcp_schedule_work() syzbot reported use-after-free in mptcp_schedule_work() [1] Issue here is that mptcp_schedule_work() schedules a work, then gets a refcount on sk->sk_refcnt if the work was scheduled. This refcount will be released by mptcp_worker(). [A] if (schedule_work(...)) { [B] sock_hold(sk); return true; } Problem is that mptcp_worker() can run immediately and complete before [B] We need instead : sock_hold(sk); if (schedule_work(...)) return true; sock_put(sk); [1] refcount_t: addition on 0; use-after-free. WARNING: CPU: 1 PID: 29 at lib/refcount.c:25 refcount_warn_saturate+0xfa/0x1d0 lib/refcount.c:25 Call Trace: <TASK> __refcount_add include/linux/refcount.h:-1 [inline] __refcount_inc include/linux/refcount.h:366 [inline] refcount_inc include/linux/refcount.h:383 [inline] sock_hold include/net/sock.h:816 [inline] mptcp_schedule_work+0x164/0x1a0 net/mptcp/protocol.c:943...

CVSS3: 7.8
redhat
4 месяца назад

In the Linux kernel, the following vulnerability has been resolved: mptcp: fix race condition in mptcp_schedule_work() syzbot reported use-after-free in mptcp_schedule_work() [1] Issue here is that mptcp_schedule_work() schedules a work, then gets a refcount on sk->sk_refcnt if the work was scheduled. This refcount will be released by mptcp_worker(). [A] if (schedule_work(...)) { [B] sock_hold(sk); return true; } Problem is that mptcp_worker() can run immediately and complete before [B] We need instead : sock_hold(sk); if (schedule_work(...)) return true; sock_put(sk); [1] refcount_t: addition on 0; use-after-free. WARNING: CPU: 1 PID: 29 at lib/refcount.c:25 refcount_warn_saturate+0xfa/0x1d0 lib/refcount.c:25 Call Trace: <TASK> __refcount_add include/linux/refcount.h:-1 [inline] __refcount_inc include/linux/refcount.h:366 [inline] refcount_inc include/linux/refcount.h:383 [inline] sock_hold include/net/sock.h:816 [inline] mptcp_schedule_work+0x164/0x1a0 net/mptcp/protocol.c:943...

nvd
4 месяца назад

In the Linux kernel, the following vulnerability has been resolved: mptcp: fix race condition in mptcp_schedule_work() syzbot reported use-after-free in mptcp_schedule_work() [1] Issue here is that mptcp_schedule_work() schedules a work, then gets a refcount on sk->sk_refcnt if the work was scheduled. This refcount will be released by mptcp_worker(). [A] if (schedule_work(...)) { [B] sock_hold(sk); return true; } Problem is that mptcp_worker() can run immediately and complete before [B] We need instead : sock_hold(sk); if (schedule_work(...)) return true; sock_put(sk); [1] refcount_t: addition on 0; use-after-free. WARNING: CPU: 1 PID: 29 at lib/refcount.c:25 refcount_warn_saturate+0xfa/0x1d0 lib/refcount.c:25 Call Trace: <TASK> __refcount_add include/linux/refcount.h:-1 [inline] __refcount_inc include/linux/refcount.h:366 [inline] refcount_inc include/linux/refcount.h:383 [inline] sock_hold include/net/sock.h:816 [inline] mptcp_sc

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

mptcp: fix race condition in mptcp_schedule_work()