CVE & CISA-KEV Catalog

CVE-2025-38166

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: bpf: fix ktls panic with sockmap [ 2172.936997] ------------[ cut here ]------------ [ 2172.936999] kernel BUG at lib/iov_iter.c:629! ...... [ 2172.944996] PKRU: 55555554 [ 2172.945155] Call Trace: [ 2172.945299] <TASK> [ 2172.945428] ? die+0x36/0x90 [ 2172.945601] ? do_trap+0xdd/0x100 [ 2172.945795] ? iov_iter_revert+0x178/0x180 [ 2172.946031] ? iov_iter_revert+0x178/0x180 [ 2172.946267] ? do_error_trap+0x7d/0x110 [ 2172.946499] ? iov_iter_revert+0x178/0x180 [ 2172.946736] ? exc_invalid_op+0x50/0x70 [ 2172.946961] ? iov_iter_revert+0x178/0x180 [ 2172.947197] ? asm_exc_invalid_op+0x1a/0x20 [ 2172.947446] ? iov_iter_revert+0x178/0x180 [ 2172.947683] ? iov_iter_revert+0x5c/0x180 [ 2172.947913] tls_sw_sendmsg_locked.isra.0+0x794/0x840 [ 2172.948206] tls_sw_sendmsg+0x52/0x80 [ 2172.948420] ? inet_sendmsg+0x1f/0x70 [ 2172.948634] __sys_sendto+0x1cd/0x200 [ 2172.948848] ? find_held_lock+0x2b/0x80 [ 2172.949072] ? syscall_trace_enter+0x140/0x270 [ 2172.949330] ? __lock_release.isra.0+0x5e/0x170 [ 2172.949595] ? find_held_lock+0x2b/0x80 [ 2172.949817] ? syscall_trace_enter+0x140/0x270 [ 2172.950211] ? lockdep_hardirqs_on_prepare+0xda/0x190 [ 2172.950632] ? ktime_get_coarse_real_ts64+0xc2/0xd0 [ 2172.951036] __x64_sys_sendto+0x24/0x30 [ 2172.951382] do_syscall_64+0x90/0x170 ...... After calling bpf_exec_tx_verdict(), the size of msg_pl->sg may increase, e.g., when the BPF program executes bpf_msg_push_data(). If the BPF program sets cork_bytes and sg.size is smaller than cork_bytes, it will return -ENOSPC and attempt to roll back to the non-zero copy logic. However, during rollback, msg->msg_iter is reset, but since msg_pl->sg.size has been increased, subsequent executions will exceed the actual size of msg_iter. ''' iov_iter_revert(&msg->msg_iter, msg_pl->sg.size - orig_size); ''' The changes in this commit are based on the following considerations: 1. When cork_bytes is set, rolling back to non-zero copy logic is pointless and can directly go to zero-copy logic. 2. We can not calculate the correct number of bytes to revert msg_iter. Assume the original data is "abcdefgh" (8 bytes), and after 3 pushes by the BPF program, it becomes 11-byte data: "abc?de?fgh?". Then, we set cork_bytes to 6, which means the first 6 bytes have been processed, and the remaining 5 bytes "?fgh?" will be cached until the length meets the cork_bytes requirement. However, some data in "?fgh?" is not within 'sg->msg_iter' (but in msg_pl instead), especially the data "?" we pushed. So it doesn't seem as simple as just reverting through an offset of msg_iter. 3. For non-TLS sockets in tcp_bpf_sendmsg, when a "cork" situation occurs, the user-space send() doesn't return an error, and the returned length is the same as the input length parameter, even if some data is cached. Additionally, I saw that the current non-zero-copy logic for handling corking is written as: ''' line 1177 else if (ret != -EAGAIN) { if (ret == -ENOSPC) ret = 0; goto send_end; ''' So it's ok to just return 'copied' without error when a "cork" situation occurs.

How to fix

Remediation Available
linuxDebian
Fixed in:6.1.147-1CVE-2025-38166
Fixed in:6.12.35-1CVE-2025-38166
Fixed in:6.12.35-1CVE-2025-38166
kernelRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernelRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64kRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64kRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debugRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debugRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-develRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-devel-matchedRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-modulesRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-modules-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debug-modules-extraRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-develRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-develRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-devel-matchedRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-modulesRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-modules-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-64k-modules-extraRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-abi-stablelistsRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debugRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debugRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-develRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-develRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-devel-matchedRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-modulesRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-modules-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-modules-extraRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-uki-virtRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debuginfo-common-s390xRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-develRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-develRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-devel-matchedRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-docRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-docRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-modulesRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-modulesRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-modules-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-modules-extraRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-modules-extra-matchedRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
kernel-modules-extra-matchedRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
kernel-rtRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rtRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64kRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64kRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debugRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debugRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-develRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-develRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-modulesRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-modulesRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-modules-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debug-modules-extraRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-develRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-develRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-modulesRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-modulesRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-modules-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-modules-extraRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-64k-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debugRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debugRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-develRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-modulesRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-modules-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debug-modules-extraRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-develRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-develRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-modulesRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-modules-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-modules-extraRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-toolsRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-toolsRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-tools-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-tools-libsRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-tools-libsRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-tools-libs-develRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-uki-virtRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-uki-virtRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-uki-virt-addonsRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-uki-virt-addonsRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdumpRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-develRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-modulesRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-modules-coreRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
kernel-zfcpdump-modules-extraRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
libperfRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
libperfRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
libperf-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
libperf-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
perfRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
perfRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
perf-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
perf-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
python3-perfRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
python3-perfRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
python3-perf-debuginfoRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
rtlaRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
rtlaRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
rvRed Hat / RHEL
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
rvRocky
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:6.12.0-211.7.1.el10_2RHSA-2026:18134
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
Fixed in:0:5.14.0-687.5.1.el9_8RHSA-2026:18587
linuxUbuntu
Fixed in:6.8.0-100.100USN-8028-1
linux-awsUbuntu
Fixed in:6.8.0-1046.49USN-8028-5
linux-aws-6.14Ubuntu
Fixed in:6.14.0-1013.13~24.04.1USN-7769-3
linux-aws-6.8Ubuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
linux-aws-fipsUbuntu
Fixed in:6.8.0-1046.49+fips1USN-8028-4
linux-azureUbuntu
Fixed in:6.8.0-1046.52USN-8074-1
linux-azure-6.8Ubuntu
Fixed in:6.8.0-1051.57~22.04.1USN-8126-1
linux-azure-fipsUbuntu
Fixed in:6.8.0-1046.52+fips1USN-8074-2
linux-fipsUbuntu
Fixed in:6.8.0-100.100+fips1USN-8028-4
linux-gcpUbuntu
Fixed in:6.8.0-1047.50USN-8031-3
linux-gcp-6.14Ubuntu
Fixed in:6.14.0-1016.17~24.04.1USN-7769-1
linux-gcp-6.8Ubuntu
Fixed in:6.8.0-1047.50~22.04.2USN-8031-1
linux-gcp-fipsUbuntu
Fixed in:6.8.0-1047.50+fips1USN-8031-2
linux-gkeUbuntu
Fixed in:6.8.0-1043.48USN-8031-3
linux-gkeopUbuntu
Fixed in:6.8.0-1030.33USN-8028-5
linux-hwe-6.14Ubuntu
Fixed in:6.14.0-32.32~24.04.1USN-7769-3
linux-hwe-6.8Ubuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
linux-ibmUbuntu
Fixed in:6.8.0-1044.44USN-8028-8
linux-ibm-6.8Ubuntu
Fixed in:6.8.0-1044.44~22.04.1USN-8028-8
linux-image-6.14.0-1012-oemUbuntu
Fixed in:6.14.0-1012.12USN-7771-1
linux-image-6.14.0-1012-realtimeUbuntu
Fixed in:6.14.0-1012.12~24.04.1USN-7769-2
linux-image-6.14.0-1013-awsUbuntu
Fixed in:6.14.0-1013.13~24.04.1USN-7769-3
linux-image-6.14.0-1013-aws-64kUbuntu
Fixed in:6.14.0-1013.13~24.04.1USN-7769-3
linux-image-6.14.0-1013-oracleUbuntu
Fixed in:6.14.0-1013.13~24.04.1USN-7789-1
linux-image-6.14.0-1013-oracle-64kUbuntu
Fixed in:6.14.0-1013.13~24.04.1USN-7789-1
linux-image-6.14.0-1016-gcpUbuntu
Fixed in:6.14.0-1016.17~24.04.1USN-7769-1
linux-image-6.14.0-1016-gcp-64kUbuntu
Fixed in:6.14.0-1016.17~24.04.1USN-7769-1
linux-image-6.14.0-32-genericUbuntu
Fixed in:6.14.0-32.32~24.04.1USN-7769-3
linux-image-6.14.0-32-generic-64kUbuntu
Fixed in:6.14.0-32.32~24.04.1USN-7769-3
linux-image-6.8.0-100-fipsUbuntu
Fixed in:6.8.0-100.100+fips1USN-8028-4
linux-image-6.8.0-100-genericUbuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
Fixed in:6.8.0-100.100USN-8028-1
linux-image-6.8.0-100-generic-64kUbuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
Fixed in:6.8.0-100.100USN-8028-1
linux-image-6.8.0-100-lowlatencyUbuntu
Fixed in:6.8.0-100.100.1~22.04.1USN-8028-6
Fixed in:6.8.0-100.100.1USN-8052-1
linux-image-6.8.0-100-lowlatency-64kUbuntu
Fixed in:6.8.0-100.100.1~22.04.1USN-8028-6
Fixed in:6.8.0-100.100.1USN-8052-1
linux-image-6.8.0-1023-xilinxUbuntu
Fixed in:6.8.0-1023.24USN-8052-2
linux-image-6.8.0-1030-gkeopUbuntu
Fixed in:6.8.0-1030.33USN-8028-5
linux-image-6.8.0-1043-gkeUbuntu
Fixed in:6.8.0-1043.48USN-8031-3
linux-image-6.8.0-1043-gke-64kUbuntu
Fixed in:6.8.0-1043.48USN-8031-3
linux-image-6.8.0-1043-oracleUbuntu
Fixed in:6.8.0-1043.44~22.04.1USN-8028-5
Fixed in:6.8.0-1043.44USN-8028-5
linux-image-6.8.0-1043-oracle-64kUbuntu
Fixed in:6.8.0-1043.44~22.04.1USN-8028-5
Fixed in:6.8.0-1043.44USN-8028-5
linux-image-6.8.0-1044-ibmUbuntu
Fixed in:6.8.0-1044.44~22.04.1USN-8028-8
Fixed in:6.8.0-1044.44USN-8028-8
linux-image-6.8.0-1046-awsUbuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-6.8.0-1046-aws-64kUbuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-6.8.0-1046-aws-fipsUbuntu
Fixed in:6.8.0-1046.49+fips1USN-8028-4
linux-image-6.8.0-1046-azureUbuntu
Fixed in:6.8.0-1046.52USN-8074-1
linux-image-6.8.0-1046-azure-fipsUbuntu
Fixed in:6.8.0-1046.52+fips1USN-8074-2
linux-image-6.8.0-1046-nvidiaUbuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-6.8.0-1046-nvidia-64kUbuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-6.8.0-1046-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1046.49.1USN-8028-7
linux-image-6.8.0-1046-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1046.49.1USN-8028-7
linux-image-6.8.0-1047-gcpUbuntu
Fixed in:6.8.0-1047.50~22.04.2USN-8031-1
Fixed in:6.8.0-1047.50USN-8031-3
linux-image-6.8.0-1047-gcp-64kUbuntu
Fixed in:6.8.0-1047.50~22.04.2USN-8031-1
Fixed in:6.8.0-1047.50USN-8031-3
linux-image-6.8.0-1047-gcp-fipsUbuntu
Fixed in:6.8.0-1047.50+fips1USN-8031-2
linux-image-6.8.0-1047-raspiUbuntu
Fixed in:6.8.0-1047.51USN-8028-1
linux-image-6.8.0-1051-azureUbuntu
Fixed in:6.8.0-1051.57~22.04.1USN-8126-1
linux-image-6.8.0-2037-raspi-realtimeUbuntu
Fixed in:6.8.0-2037.38USN-8028-3
linux-image-6.8.1-1041-realtimeUbuntu
Fixed in:6.8.1-1041.42~22.04.1USN-8028-2
Fixed in:6.8.1-1041.42USN-8028-3
linux-image-awsUbuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
Fixed in:6.14.0-1013.13~24.04.1USN-7769-3
linux-image-aws-6.14Ubuntu
Fixed in:6.14.0-1013.13~24.04.1USN-7769-3
linux-image-aws-6.8Ubuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-aws-64kUbuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
Fixed in:6.14.0-1013.13~24.04.1USN-7769-3
linux-image-aws-64k-6.14Ubuntu
Fixed in:6.14.0-1013.13~24.04.1USN-7769-3
linux-image-aws-64k-6.8Ubuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-aws-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-aws-fipsUbuntu
Fixed in:6.8.0-1046.49+fips1USN-8028-4
linux-image-aws-fips-6.8Ubuntu
Fixed in:6.8.0-1046.49+fips1USN-8028-4
linux-image-aws-lts-24.04Ubuntu
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-azureUbuntu
Fixed in:6.8.0-1051.57~22.04.1USN-8126-1
linux-image-azure-6.8Ubuntu
Fixed in:6.8.0-1051.57~22.04.1USN-8126-1
Fixed in:6.8.0-1046.52USN-8074-1
linux-image-azure-fipsUbuntu
Fixed in:6.8.0-1046.52+fips1USN-8074-2
linux-image-azure-fips-6.8Ubuntu
Fixed in:6.8.0-1046.52+fips1USN-8074-2
linux-image-azure-lts-24.04Ubuntu
Fixed in:6.8.0-1046.52USN-8074-1
linux-image-fipsUbuntu
Fixed in:6.8.0-100.100+fips1USN-8028-4
linux-image-fips-6.8Ubuntu
Fixed in:6.8.0-100.100+fips1USN-8028-4
linux-image-gcpUbuntu
Fixed in:6.8.0-1047.50~22.04.2USN-8031-1
Fixed in:6.14.0-1016.17~24.04.1USN-7769-1
linux-image-gcp-6.14Ubuntu
Fixed in:6.14.0-1016.17~24.04.1USN-7769-1
linux-image-gcp-6.8Ubuntu
Fixed in:6.8.0-1047.50~22.04.2USN-8031-1
Fixed in:6.8.0-1047.50USN-8031-3
linux-image-gcp-64kUbuntu
Fixed in:6.8.0-1047.50~22.04.2USN-8031-1
Fixed in:6.14.0-1016.17~24.04.1USN-7769-1
linux-image-gcp-64k-6.14Ubuntu
Fixed in:6.14.0-1016.17~24.04.1USN-7769-1
linux-image-gcp-64k-6.8Ubuntu
Fixed in:6.8.0-1047.50~22.04.2USN-8031-1
Fixed in:6.8.0-1047.50USN-8031-3
linux-image-gcp-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1047.50USN-8031-3
linux-image-gcp-fipsUbuntu
Fixed in:6.8.0-1047.50+fips1USN-8031-2
linux-image-gcp-fips-6.8Ubuntu
Fixed in:6.8.0-1047.50+fips1USN-8031-2
linux-image-gcp-lts-24.04Ubuntu
Fixed in:6.8.0-1047.50USN-8031-3
linux-image-genericUbuntu
Fixed in:6.8.0-100.100USN-8028-1
linux-image-generic-6.14Ubuntu
Fixed in:6.14.0-32.32~24.04.1USN-7769-3
linux-image-generic-6.8Ubuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
Fixed in:6.8.0-100.100USN-8028-1
linux-image-generic-64kUbuntu
Fixed in:6.8.0-100.100USN-8028-1
linux-image-generic-64k-6.14Ubuntu
Fixed in:6.14.0-32.32~24.04.1USN-7769-3
linux-image-generic-64k-6.8Ubuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
Fixed in:6.8.0-100.100USN-8028-1
linux-image-generic-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
linux-image-generic-64k-hwe-24.04Ubuntu
Fixed in:6.14.0-32.32~24.04.1USN-7769-3
linux-image-generic-hwe-22.04Ubuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
linux-image-generic-hwe-24.04Ubuntu
Fixed in:6.14.0-32.32~24.04.1USN-7769-3
linux-image-generic-lpaeUbuntu
Fixed in:6.8.0-100.100USN-8028-1
linux-image-gkeUbuntu
Fixed in:6.8.0-1043.48USN-8031-3
linux-image-gke-6.8Ubuntu
Fixed in:6.8.0-1043.48USN-8031-3
linux-image-gke-64kUbuntu
Fixed in:6.8.0-1043.48USN-8031-3
linux-image-gke-64k-6.8Ubuntu
Fixed in:6.8.0-1043.48USN-8031-3
linux-image-gkeopUbuntu
Fixed in:6.8.0-1030.33USN-8028-5
linux-image-gkeop-6.8Ubuntu
Fixed in:6.8.0-1030.33USN-8028-5
linux-image-ibmUbuntu
Fixed in:6.8.0-1044.44USN-8028-8
linux-image-ibm-6.8Ubuntu
Fixed in:6.8.0-1044.44~22.04.1USN-8028-8
Fixed in:6.8.0-1044.44USN-8028-8
linux-image-ibm-classicUbuntu
Fixed in:6.8.0-1044.44USN-8028-8
linux-image-ibm-lts-24.04Ubuntu
Fixed in:6.8.0-1044.44USN-8028-8
linux-image-intel-iot-realtimeUbuntu
Fixed in:6.8.1-1041.42USN-8028-3
linux-image-intel-iotgUbuntu
Fixed in:6.8.0-100.100USN-8028-1
linux-image-kvmUbuntu
Fixed in:6.8.0-100.100USN-8028-1
linux-image-lowlatencyUbuntu
Fixed in:6.8.0-100.100.1USN-8052-1
linux-image-lowlatency-6.8Ubuntu
Fixed in:6.8.0-100.100.1~22.04.1USN-8028-6
Fixed in:6.8.0-100.100.1USN-8052-1
linux-image-lowlatency-64kUbuntu
Fixed in:6.8.0-100.100.1USN-8052-1
linux-image-lowlatency-64k-6.8Ubuntu
Fixed in:6.8.0-100.100.1~22.04.1USN-8028-6
Fixed in:6.8.0-100.100.1USN-8052-1
linux-image-lowlatency-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-100.100.1~22.04.1USN-8028-6
linux-image-lowlatency-hwe-22.04Ubuntu
Fixed in:6.8.0-100.100.1~22.04.1USN-8028-6
linux-image-nvidiaUbuntu
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-nvidia-6.8Ubuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-nvidia-64kUbuntu
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-nvidia-64k-6.8Ubuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
Fixed in:6.8.0-1046.49USN-8028-5
linux-image-nvidia-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
linux-image-nvidia-hwe-22.04Ubuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
linux-image-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1046.49.1USN-8028-7
linux-image-nvidia-lowlatency-6.8Ubuntu
Fixed in:6.8.0-1046.49.1USN-8028-7
linux-image-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1046.49.1USN-8028-7
linux-image-nvidia-lowlatency-64k-6.8Ubuntu
Fixed in:6.8.0-1046.49.1USN-8028-7
linux-image-oem-22.04Ubuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
linux-image-oem-22.04aUbuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
linux-image-oem-22.04bUbuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
linux-image-oem-22.04cUbuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
linux-image-oem-22.04dUbuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
linux-image-oem-24.04Ubuntu
Fixed in:6.14.0-1012.12USN-7771-1
linux-image-oem-24.04aUbuntu
Fixed in:6.14.0-1012.12USN-7771-1
linux-image-oem-24.04bUbuntu
Fixed in:6.14.0-1012.12USN-7771-1
linux-image-oem-24.04cUbuntu
Fixed in:6.14.0-1012.12USN-7771-1
linux-image-oem-6.14Ubuntu
Fixed in:6.14.0-1012.12USN-7771-1
linux-image-oracleUbuntu
Fixed in:6.8.0-1043.44~22.04.1USN-8028-5
Fixed in:6.14.0-1013.13~24.04.1USN-7789-1
linux-image-oracle-6.14Ubuntu
Fixed in:6.14.0-1013.13~24.04.1USN-7789-1
linux-image-oracle-6.8Ubuntu
Fixed in:6.8.0-1043.44~22.04.1USN-8028-5
Fixed in:6.8.0-1043.44USN-8028-5
linux-image-oracle-64kUbuntu
Fixed in:6.8.0-1043.44~22.04.1USN-8028-5
Fixed in:6.14.0-1013.13~24.04.1USN-7789-1
linux-image-oracle-64k-6.14Ubuntu
Fixed in:6.14.0-1013.13~24.04.1USN-7789-1
linux-image-oracle-64k-6.8Ubuntu
Fixed in:6.8.0-1043.44~22.04.1USN-8028-5
Fixed in:6.8.0-1043.44USN-8028-5
linux-image-oracle-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1043.44USN-8028-5
linux-image-oracle-lts-24.04Ubuntu
Fixed in:6.8.0-1043.44USN-8028-5
linux-image-raspiUbuntu
Fixed in:6.8.0-1047.51USN-8028-1
linux-image-raspi-6.8Ubuntu
Fixed in:6.8.0-1047.51USN-8028-1
linux-image-raspi-realtimeUbuntu
Fixed in:6.8.0-2037.38USN-8028-3
linux-image-raspi-realtime-6.8Ubuntu
Fixed in:6.8.0-2037.38USN-8028-3
linux-image-realtimeUbuntu
Fixed in:6.8.1-1041.42USN-8028-3
linux-image-realtime-6.14Ubuntu
Fixed in:6.14.0-1012.12~24.04.1USN-7769-2
linux-image-realtime-6.8.1Ubuntu
Fixed in:6.8.1-1041.42~22.04.1USN-8028-2
Fixed in:6.8.1-1041.42USN-8028-3
linux-image-realtime-hwe-22.04Ubuntu
Fixed in:6.8.1-1041.42~22.04.1USN-8028-2
linux-image-realtime-hwe-24.04Ubuntu
Fixed in:6.14.0-1012.12~24.04.1USN-7769-2
linux-image-virtualUbuntu
Fixed in:6.8.0-100.100USN-8028-1
linux-image-virtual-6.14Ubuntu
Fixed in:6.14.0-32.32~24.04.1USN-7769-3
linux-image-virtual-6.8Ubuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
Fixed in:6.8.0-100.100USN-8028-1
linux-image-virtual-hwe-22.04Ubuntu
Fixed in:6.8.0-100.100~22.04.1USN-8028-6
linux-image-virtual-hwe-24.04Ubuntu
Fixed in:6.14.0-32.32~24.04.1USN-7769-3
linux-image-xilinxUbuntu
Fixed in:6.8.0.1023.24USN-8052-2
linux-image-xilinx-6.8Ubuntu
Fixed in:6.8.0.1023.24USN-8052-2
linux-image-xilinx-zynqmpUbuntu
Fixed in:6.8.0.1023.24USN-8052-2
linux-lowlatencyUbuntu
Fixed in:6.8.0-100.100.1USN-8052-1
linux-lowlatency-hwe-6.8Ubuntu
Fixed in:6.8.0-100.100.1~22.04.1USN-8028-6
linux-nvidiaUbuntu
Fixed in:6.8.0-1046.49USN-8028-5
linux-nvidia-6.8Ubuntu
Fixed in:6.8.0-1046.49~22.04.1USN-8028-5
linux-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1046.49.1USN-8028-7
linux-oem-6.14Ubuntu
Fixed in:6.14.0-1012.12USN-7771-1
linux-oracleUbuntu
Fixed in:6.8.0-1043.44USN-8028-5
linux-oracle-6.14Ubuntu
Fixed in:6.14.0-1013.13~24.04.1USN-7789-1
linux-oracle-6.8Ubuntu
Fixed in:6.8.0-1043.44~22.04.1USN-8028-5
linux-raspiUbuntu
Fixed in:6.8.0-1047.51USN-8028-1
linux-raspi-realtimeUbuntu
Fixed in:6.8.0-2037.38USN-8028-3
linux-realtimeUbuntu
Fixed in:6.8.1-1041.42USN-8028-3
linux-realtime-6.14Ubuntu
Fixed in:6.14.0-1012.12~24.04.1USN-7769-2
linux-realtime-6.8Ubuntu
Fixed in:6.8.1-1041.42~22.04.1USN-8028-2
linux-xilinxUbuntu
Fixed in:6.8.0-1023.24USN-8052-2

Remediation is compiled from vendor and distribution security advisories. Always confirm against the linked source for your exact version and platform.

CVSS v3 Vector

Exploitability

Attack VectorLocal
Attack ComplexityLow
Privileges RequiredLow
User InteractionNone
ScopeUnchanged

Impact

ConfidentialityNone
IntegrityNone
AvailabilityHigh

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H

Exploit Intelligence

0.15%probability of exploitation in 30 days
4thpercentile

Low risk: more likely to be exploited than 4% of all known CVEs.

References

Embed a live status badge for CVE-2025-38166
CVE-2025-38166 severity badge

Markdown

[![CVE-2025-38166](https://tridentstack.com/cve/badge/CVE-2025-38166.svg)](https://tridentstack.com/cve/CVE-2025-38166)

HTML

<a href="https://tridentstack.com/cve/CVE-2025-38166"><img src="https://tridentstack.com/cve/badge/CVE-2025-38166.svg" alt="CVE-2025-38166"></a>

Find and fix vulnerabilities across your fleet

TridentStack Control continuously scans your Windows, macOS, and Linux fleet for known vulnerabilities, prioritizes them by severity and active exploitation, and patches them automatically.

Start free

This product uses NVD data but is not endorsed or certified by the NVD. EPSS scores courtesy of FIRST.org (https://www.first.org/epss). Source: CISA KEV Catalog. Data as of 2025-12-18.