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

exploitDog

rocky логотип

RLSA-2026:49211

Опубликовано: 02 авг. 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: ksm: use range-walk function to jump over holes in scan_get_next_rmap_item (CVE-2025-68211)

  • kernel: isofs: validate Rock Ridge CE continuation extent against volume size (CVE-2026-46303)

  • kernel: net: sched: UAF via missing handler for TC_ACT_CONSUMED in tcf_qevent_handle ()

Bug Fix(es) and Enhancement(s):

  • [DELL 10.2 FEAT] [LATE-ADD] - Include support for Ghostrider PTL mini config SKU with Realtek IC Solution [rhel-10.2.z] (JIRA:Rocky Linux-185669)

  • dpll: fix NULL pointer dereference in dpll_msg_add_pin_ref_sync() [rhel-10.2.z] (JIRA:Rocky Linux-212063)

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

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

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

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

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

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

In the Linux kernel, the following vulnerability has been resolved: ksm: use range-walk function to jump over holes in scan_get_next_rmap_item Currently, scan_get_next_rmap_item() walks every page address in a VMA to locate mergeable pages. This becomes highly inefficient when scanning large virtual memory areas that contain mostly unmapped regions, causing ksmd to use large amount of cpu without deduplicating much pages. This patch replaces the per-address lookup with a range walk using walk_page_range(). The range walker allows KSM to skip over entire unmapped holes in a VMA, avoiding unnecessary lookups. This problem was previously discussed in [1]. Consider the following test program which creates a 32 TiB mapping in the virtual address space but only populates a single page: #include <unistd.h> #include <stdio.h> #include <sys/mman.h> /* 32 TiB */ const size_t size = 32ul * 1024 * 1024 * 1024 * 1024; int main() { char *area = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_NORE...

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

In the Linux kernel, the following vulnerability has been resolved: ksm: use range-walk function to jump over holes in scan_get_next_rmap_item Currently, scan_get_next_rmap_item() walks every page address in a VMA to locate mergeable pages. This becomes highly inefficient when scanning large virtual memory areas that contain mostly unmapped regions, causing ksmd to use large amount of cpu without deduplicating much pages. This patch replaces the per-address lookup with a range walk using walk_page_range(). The range walker allows KSM to skip over entire unmapped holes in a VMA, avoiding unnecessary lookups. This problem was previously discussed in [1]. Consider the following test program which creates a 32 TiB mapping in the virtual address space but only populates a single page: #include <unistd.h> #include <stdio.h> #include <sys/mman.h> /* 32 TiB */ const size_t size = 32ul * 1024 * 1024 * 1024 * 1024; int main() { char *area = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_NORE...

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

In the Linux kernel, the following vulnerability has been resolved: ksm: use range-walk function to jump over holes in scan_get_next_rmap_item Currently, scan_get_next_rmap_item() walks every page address in a VMA to locate mergeable pages. This becomes highly inefficient when scanning large virtual memory areas that contain mostly unmapped regions, causing ksmd to use large amount of cpu without deduplicating much pages. This patch replaces the per-address lookup with a range walk using walk_page_range(). The range walker allows KSM to skip over entire unmapped holes in a VMA, avoiding unnecessary lookups. This problem was previously discussed in [1]. Consider the following test program which creates a 32 TiB mapping in the virtual address space but only populates a single page: #include <unistd.h> #include <stdio.h> #include <sys/mman.h> /* 32 TiB */ const size_t size = 32ul * 1024 * 1024 * 1024 * 1024; int main() { char *area = mmap(NULL, size, PROT_READ | PROT_WRI

CVSS3: 5.5
msrc
8 месяцев назад

ksm: use range-walk function to jump over holes in scan_get_next_rmap_item