CVE & CISA-KEV Catalog

CVE-2024-50082

MEDIUM
4.7
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: blk-rq-qos: fix crash on rq_qos_wait vs. rq_qos_wake_function race We're seeing crashes from rq_qos_wake_function that look like this: BUG: unable to handle page fault for address: ffffafe180a40084 #PF: supervisor write access in kernel mode #PF: error_code(0x0002) - not-present page PGD 100000067 P4D 100000067 PUD 10027c067 PMD 10115d067 PTE 0 Oops: Oops: 0002 [#1] PREEMPT SMP PTI CPU: 17 UID: 0 PID: 0 Comm: swapper/17 Not tainted 6.12.0-rc3-00013-geca631b8fe80 #11 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.16.0-0-gd239552ce722-prebuilt.qemu.org 04/01/2014 RIP: 0010:_raw_spin_lock_irqsave+0x1d/0x40 Code: 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 41 54 9c 41 5c fa 65 ff 05 62 97 30 4c 31 c0 ba 01 00 00 00 <f0> 0f b1 17 75 0a 4c 89 e0 41 5c c3 cc cc cc cc 89 c6 e8 2c 0b 00 RSP: 0018:ffffafe180580ca0 EFLAGS: 00010046 RAX: 0000000000000000 RBX: ffffafe180a3f7a8 RCX: 0000000000000011 RDX: 0000000000000001 RSI: 0000000000000003 RDI: ffffafe180a40084 RBP: 0000000000000000 R08: 00000000001e7240 R09: 0000000000000011 R10: 0000000000000028 R11: 0000000000000888 R12: 0000000000000002 R13: ffffafe180a40084 R14: 0000000000000000 R15: 0000000000000003 FS: 0000000000000000(0000) GS:ffff9aaf1f280000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: ffffafe180a40084 CR3: 000000010e428002 CR4: 0000000000770ef0 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 PKRU: 55555554 Call Trace: <IRQ> try_to_wake_up+0x5a/0x6a0 rq_qos_wake_function+0x71/0x80 __wake_up_common+0x75/0xa0 __wake_up+0x36/0x60 scale_up.part.0+0x50/0x110 wb_timer_fn+0x227/0x450 ... So rq_qos_wake_function() calls wake_up_process(data->task), which calls try_to_wake_up(), which faults in raw_spin_lock_irqsave(&p->pi_lock). p comes from data->task, and data comes from the waitqueue entry, which is stored on the waiter's stack in rq_qos_wait(). Analyzing the core dump with drgn, I found that the waiter had already woken up and moved on to a completely unrelated code path, clobbering what was previously data->task. Meanwhile, the waker was passing the clobbered garbage in data->task to wake_up_process(), leading to the crash. What's happening is that in between rq_qos_wake_function() deleting the waitqueue entry and calling wake_up_process(), rq_qos_wait() is finding that it already got a token and returning. The race looks like this: rq_qos_wait() rq_qos_wake_function() ============================================================== prepare_to_wait_exclusive() data->got_token = true; list_del_init(&curr->entry); if (data.got_token) break; finish_wait(&rqw->wait, &data.wq); ^- returns immediately because list_empty_careful(&wq_entry->entry) is true ... return, go do something else ... wake_up_process(data->task) (NO LONGER VALID!)-^ Normally, finish_wait() is supposed to synchronize against the waker. But, as noted above, it is returning immediately because the waitqueue entry has already been removed from the waitqueue. The bug is that rq_qos_wake_function() is accessing the waitqueue entry AFTER deleting it. Note that autoremove_wake_function() wakes the waiter and THEN deletes the waitqueue entry, which is the proper order. Fix it by swapping the order. We also need to use list_del_init_careful() to match the list_empty_careful() in finish_wait().

How to fix

Remediation Available
linuxDebian
Fixed in:5.10.234-1CVE-2024-50082
Fixed in:6.1.115-1CVE-2024-50082
Fixed in:6.11.5-1CVE-2024-50082
Fixed in:6.11.5-1CVE-2024-50082
bpftoolRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
bpftoolRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
bpftool-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:7.3.0-427.79.1.el9_4RHSA-2025:11810
kernelRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernelRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64kRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-coreRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-debugRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-develRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-modulesRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-abi-stablelistsRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-coreRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debugRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debug-coreRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debug-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debug-develRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debug-modulesRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debug-modules-extraRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debuginfo-common-s390xRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-develRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-devel-matchedRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-docRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-docRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-modulesRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-modules-coreRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-modules-extraRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rtRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-rtRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64kRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64kRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-coreRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debugRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-coreRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-develRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-modulesRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-debuginfoRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-develRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-modulesRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-modules-coreRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-64k-modules-extraRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-coreRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-rt-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debugRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debug-coreRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debug-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-rt-debug-develRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-rt-debug-kvmRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debug-modulesRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debug-modules-extraRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-rt-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
kernel-rt-develRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-kvmRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-modulesRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-rt-modules-extraRocky
Fixed in:0:4.18.0-553.32.1.rt7.373.el8_10RHSA-2024:10944
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-toolsRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-toolsRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-tools-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-tools-libsRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-tools-libsRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-tools-libs-develRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-uki-virtRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-uki-virt-addonsRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-uki-virt-addonsRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-zfcpdumpRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-zfcpdump-coreRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-zfcpdump-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-zfcpdump-develRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-zfcpdump-modulesRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
kernel-zfcpdump-modules-extraRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
libperfRed Hat / RHEL
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
libperfRocky
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
libperf-debuginfoRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
perfRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
perfRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
perf-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
python3-perfRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
python3-perfRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
python3-perf-debuginfoRocky
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:4.18.0-553.32.1.el8_10RHSA-2024:10943
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
rtlaRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
rvRed Hat / RHEL
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
rvRocky
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
Fixed in:0:5.14.0-427.79.1.el9_4RHSA-2025:11810
Fixed in:0:5.14.0-570.12.1.el9_6RHSA-2025:6966
linuxUbuntu
Fixed in:5.4.0-208.228USN-7293-1
Fixed in:5.15.0-133.144USN-7288-1
Fixed in:6.8.0-56.58USN-7383-1
linux-awsUbuntu
Fixed in:5.4.0-1140.150USN-7294-2
Fixed in:5.15.0-1078.85USN-7308-1
Fixed in:6.8.0-1025.27USN-7383-1
linux-aws-5.15Ubuntu
Fixed in:5.15.0-1080.87~20.04.1USN-7388-1
linux-aws-5.4Ubuntu
Fixed in:5.4.0-1142.152~18.04.1USN-7401-1
linux-aws-6.8Ubuntu
Fixed in:6.8.0-1027.29~22.04.1USN-7451-1
linux-azureUbuntu
Fixed in:5.4.0-1145.152USN-7294-1
Fixed in:5.15.0-1081.90USN-7289-1
Fixed in:6.8.0-1025.30USN-7384-1
linux-azure-5.15Ubuntu
Fixed in:5.15.0-1081.90~20.04.1USN-7289-2
linux-azure-5.4Ubuntu
Fixed in:5.4.0-1145.152~18.04.1USN-7294-1
linux-azure-6.8Ubuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
linux-azure-fdeUbuntu
Fixed in:5.15.0-1081.90.1USN-7289-1
linux-azure-fde-5.15Ubuntu
Fixed in:5.15.0-1081.90~20.04.1.1USN-7289-2
linux-azure-nvidiaUbuntu
Fixed in:6.8.0-1014.15USN-7468-1
linux-bluefieldUbuntu
Fixed in:5.4.0-1099.106USN-7294-1
linux-fipsUbuntu
Fixed in:5.4.0-1116.126USN-7393-1
linux-gcpUbuntu
Fixed in:5.4.0-1143.152USN-7294-1
Fixed in:5.15.0-1077.86USN-7291-1
Fixed in:6.8.0-1026.28USN-7383-1
linux-gcp-5.15Ubuntu
Fixed in:5.15.0-1077.86~20.04.1USN-7291-1
linux-gcp-5.4Ubuntu
Fixed in:5.4.0-1143.152~18.04.1USN-7294-1
linux-gcp-6.8Ubuntu
Fixed in:6.8.0-1026.28~22.04.1USN-7383-1
linux-gkeUbuntu
Fixed in:5.15.0-1075.81USN-7291-1
Fixed in:6.8.0-1021.25USN-7383-1
linux-gkeopUbuntu
Fixed in:5.15.0-1060.68USN-7289-1
Fixed in:6.8.0-1008.10USN-7383-1
linux-hwe-5.15Ubuntu
Fixed in:5.15.0-134.145~20.04.1USN-7331-1
linux-hwe-5.4Ubuntu
Fixed in:5.4.0-208.228~18.04.1USN-7293-1
linux-hwe-6.8Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-ibmUbuntu
Fixed in:5.4.0-1086.91USN-7294-3
Fixed in:5.15.0-1070.73USN-7289-3
Fixed in:6.8.0-1022.22USN-7385-1
linux-ibm-5.15Ubuntu
Fixed in:5.15.0-1074.77~20.04.1USN-7458-1
linux-ibm-5.4Ubuntu
Fixed in:5.4.0-1086.91~18.04.1USN-7294-1
linux-image-5.15.0-1021-nvidia-tegra-igxUbuntu
Fixed in:5.15.0-1021.21USN-7389-1
linux-image-5.15.0-1021-nvidia-tegra-igx-rtUbuntu
Fixed in:5.15.0-1021.21USN-7389-1
linux-image-5.15.0-1033-nvidia-tegraUbuntu
Fixed in:5.15.0-1033.33USN-7389-1
linux-image-5.15.0-1033-nvidia-tegra-rtUbuntu
Fixed in:5.15.0-1033.33USN-7389-1
linux-image-5.15.0-1044-xilinx-zynqmpUbuntu
Fixed in:5.15.0-1044.48USN-7390-1
linux-image-5.15.0-1060-gkeopUbuntu
Fixed in:5.15.0-1060.68USN-7289-1
linux-image-5.15.0-1070-ibmUbuntu
Fixed in:5.15.0-1070.73USN-7289-3
linux-image-5.15.0-1072-nvidiaUbuntu
Fixed in:5.15.0-1072.73USN-7289-1
linux-image-5.15.0-1072-nvidia-lowlatencyUbuntu
Fixed in:5.15.0-1072.73USN-7289-1
linux-image-5.15.0-1072-raspiUbuntu
Fixed in:5.15.0-1072.75USN-7305-1
linux-image-5.15.0-1073-intel-iotgUbuntu
Fixed in:5.15.0-1073.79~20.04.2USN-7289-4
Fixed in:5.15.0-1073.79USN-7289-4
linux-image-5.15.0-1074-ibmUbuntu
Fixed in:5.15.0-1074.77~20.04.1USN-7458-1
linux-image-5.15.0-1075-gkeUbuntu
Fixed in:5.15.0-1075.81USN-7291-1
linux-image-5.15.0-1075-oracleUbuntu
Fixed in:5.15.0-1075.81~20.04.1USN-7289-2
Fixed in:5.15.0-1075.81USN-7289-1
linux-image-5.15.0-1076-kvmUbuntu
Fixed in:5.15.0-1076.81USN-7388-1
linux-image-5.15.0-1077-gcpUbuntu
Fixed in:5.15.0-1077.86~20.04.1USN-7291-1
Fixed in:5.15.0-1077.86USN-7291-1
linux-image-5.15.0-1078-awsUbuntu
Fixed in:5.15.0-1078.85USN-7308-1
linux-image-5.15.0-1080-awsUbuntu
Fixed in:5.15.0-1080.87~20.04.1USN-7388-1
linux-image-5.15.0-1081-azureUbuntu
Fixed in:5.15.0-1081.90~20.04.1USN-7289-2
Fixed in:5.15.0-1081.90USN-7289-1
linux-image-5.15.0-1081-azure-fdeUbuntu
Fixed in:5.15.0-1081.90~20.04.1.1USN-7289-2
Fixed in:5.15.0-1081.90.1USN-7289-1
linux-image-5.15.0-133-genericUbuntu
Fixed in:5.15.0-133.144USN-7288-1
linux-image-5.15.0-133-generic-64kUbuntu
Fixed in:5.15.0-133.144USN-7288-1
linux-image-5.15.0-133-generic-lpaeUbuntu
Fixed in:5.15.0-133.144USN-7288-1
linux-image-5.15.0-133-lowlatencyUbuntu
Fixed in:5.15.0-133.143~20.04.1USN-7288-2
Fixed in:5.15.0-133.143USN-7288-1
linux-image-5.15.0-133-lowlatency-64kUbuntu
Fixed in:5.15.0-133.143~20.04.1USN-7288-2
Fixed in:5.15.0-133.143USN-7288-1
linux-image-5.15.0-134-genericUbuntu
Fixed in:5.15.0-134.145~20.04.1USN-7331-1
linux-image-5.15.0-134-generic-64kUbuntu
Fixed in:5.15.0-134.145~20.04.1USN-7331-1
linux-image-5.15.0-134-generic-lpaeUbuntu
Fixed in:5.15.0-134.145~20.04.1USN-7331-1
linux-image-5.4.0-1048-iotUbuntu
Fixed in:5.4.0-1048.51USN-7413-1
linux-image-5.4.0-1058-xilinx-zynqmpUbuntu
Fixed in:5.4.0-1058.62USN-7295-1
linux-image-5.4.0-1086-ibmUbuntu
Fixed in:5.4.0-1086.91~18.04.1USN-7294-1
Fixed in:5.4.0-1086.91USN-7294-3
linux-image-5.4.0-1099-bluefieldUbuntu
Fixed in:5.4.0-1099.106USN-7294-1
linux-image-5.4.0-1116-fipsUbuntu
Fixed in:5.4.0-1116.126USN-7393-1
linux-image-5.4.0-1127-kvmUbuntu
Fixed in:5.4.0-1127.136USN-7294-4
linux-image-5.4.0-1129-raspiUbuntu
Fixed in:5.4.0-1129.142~18.04.1USN-7540-1
Fixed in:5.4.0-1129.142USN-7539-1
linux-image-5.4.0-1138-oracleUbuntu
Fixed in:5.4.0-1138.147~18.04.1USN-7294-2
Fixed in:5.4.0-1138.147USN-7294-2
linux-image-5.4.0-1140-awsUbuntu
Fixed in:5.4.0-1140.150USN-7294-2
linux-image-5.4.0-1142-awsUbuntu
Fixed in:5.4.0-1142.152~18.04.1USN-7401-1
linux-image-5.4.0-1143-gcpUbuntu
Fixed in:5.4.0-1143.152~18.04.1USN-7294-1
Fixed in:5.4.0-1143.152USN-7294-1
linux-image-5.4.0-1145-azureUbuntu
Fixed in:5.4.0-1145.152~18.04.1USN-7294-1
Fixed in:5.4.0-1145.152USN-7294-1
linux-image-5.4.0-208-genericUbuntu
Fixed in:5.4.0-208.228~18.04.1USN-7293-1
Fixed in:5.4.0-208.228USN-7293-1
linux-image-5.4.0-208-generic-lpaeUbuntu
Fixed in:5.4.0-208.228USN-7293-1
linux-image-5.4.0-208-lowlatencyUbuntu
Fixed in:5.4.0-208.228~18.04.1USN-7293-1
Fixed in:5.4.0-208.228USN-7293-1
linux-image-6.11.0-1015-oemUbuntu
Fixed in:6.11.0-1015.15USN-7310-1
linux-image-6.8.0-1008-gkeopUbuntu
Fixed in:6.8.0-1008.10USN-7383-1
linux-image-6.8.0-1014-azure-nvidiaUbuntu
Fixed in:6.8.0-1014.15USN-7468-1
linux-image-6.8.0-1021-gkeUbuntu
Fixed in:6.8.0-1021.25USN-7383-1
linux-image-6.8.0-1022-ibmUbuntu
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-6.8.0-1022-oracleUbuntu
Fixed in:6.8.0-1022.23~22.04.1USN-7383-1
Fixed in:6.8.0-1022.23USN-7383-1
linux-image-6.8.0-1022-oracle-64kUbuntu
Fixed in:6.8.0-1022.23~22.04.1USN-7383-1
Fixed in:6.8.0-1022.23USN-7383-1
linux-image-6.8.0-1024-nvidiaUbuntu
Fixed in:6.8.0-1024.27~22.04.1USN-7383-1
Fixed in:6.8.0-1024.27USN-7383-1
linux-image-6.8.0-1024-nvidia-64kUbuntu
Fixed in:6.8.0-1024.27~22.04.1USN-7383-1
Fixed in:6.8.0-1024.27USN-7383-1
linux-image-6.8.0-1024-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1024.27.1USN-7383-1
linux-image-6.8.0-1024-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1024.27.1USN-7383-1
linux-image-6.8.0-1024-oemUbuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-image-6.8.0-1025-awsUbuntu
Fixed in:6.8.0-1025.27USN-7383-1
linux-image-6.8.0-1025-azureUbuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-6.8.0-1025-azure-fdeUbuntu
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-6.8.0-1026-gcpUbuntu
Fixed in:6.8.0-1026.28~22.04.1USN-7383-1
Fixed in:6.8.0-1026.28USN-7383-1
linux-image-6.8.0-1026-gcp-64kUbuntu
Fixed in:6.8.0-1026.28~22.04.1USN-7383-1
Fixed in:6.8.0-1026.28USN-7383-1
linux-image-6.8.0-1027-awsUbuntu
Fixed in:6.8.0-1027.29~22.04.1USN-7451-1
linux-image-6.8.0-1028-raspiUbuntu
Fixed in:6.8.0-1028.32USN-7524-1
linux-image-6.8.0-2023-raspi-realtimeUbuntu
Fixed in:6.8.0-2023.24USN-7523-1
linux-image-6.8.0-56-genericUbuntu
Fixed in:6.8.0-56.58+1USN-7383-1
linux-image-6.8.0-56-generic-64kUbuntu
Fixed in:6.8.0-56.58+1USN-7383-1
linux-image-6.8.0-56-lowlatencyUbuntu
Fixed in:6.8.0-56.58.1~22.04.1USN-7383-1
Fixed in:6.8.0-56.58.1USN-7383-1
linux-image-6.8.0-56-lowlatency-64kUbuntu
Fixed in:6.8.0-56.58.1~22.04.1USN-7383-1
Fixed in:6.8.0-56.58.1USN-7383-1
linux-image-6.8.0-57-genericUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-6.8.0-57-generic-64kUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-6.8.1-1018-realtimeUbuntu
Fixed in:6.8.1-1018.19USN-7383-2
linux-image-awsUbuntu
Fixed in:5.4.0.1142.152~18.04.1USN-7401-1
Fixed in:5.15.0.1080.87~20.04.1USN-7388-1
Fixed in:6.8.0-1027.29~22.04.1USN-7451-1
Fixed in:6.8.0-1025.27USN-7383-1
linux-image-aws-lts-20.04Ubuntu
Fixed in:5.4.0.1140.137USN-7294-2
linux-image-aws-lts-22.04Ubuntu
Fixed in:5.15.0.1078.80USN-7308-1
linux-image-aws-lts-24.04Ubuntu
Fixed in:6.8.0-1025.27USN-7383-1
linux-image-azureUbuntu
Fixed in:5.4.0.1145.152~18.04.1USN-7294-1
Fixed in:5.15.0.1081.90~20.04.1USN-7289-2
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
linux-image-azure-cvmUbuntu
Fixed in:5.15.0.1081.90~20.04.1USN-7289-2
linux-image-azure-fdeUbuntu
Fixed in:5.15.0.1081.90~20.04.1.57USN-7289-2
Fixed in:6.8.0-1025.30~22.04.1USN-7384-2
linux-image-azure-fde-lts-22.04Ubuntu
Fixed in:5.15.0.1081.90.58USN-7289-1
linux-image-azure-fde-lts-24.04Ubuntu
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-azure-lts-20.04Ubuntu
Fixed in:5.4.0.1145.139USN-7294-1
linux-image-azure-lts-22.04Ubuntu
Fixed in:5.15.0.1081.79USN-7289-1
linux-image-azure-lts-24.04Ubuntu
Fixed in:6.8.0-1025.30USN-7384-1
linux-image-azure-nvidiaUbuntu
Fixed in:6.8.0-1014.15USN-7468-1
linux-image-bluefieldUbuntu
Fixed in:5.4.0.1099.95USN-7294-1
linux-image-fipsUbuntu
Fixed in:5.4.0.1116.113USN-7393-1
linux-image-gcpUbuntu
Fixed in:5.4.0.1143.152~18.04.1USN-7294-1
Fixed in:5.15.0.1077.86~20.04.1USN-7291-1
Fixed in:6.8.0-1026.28~22.04.1USN-7383-1
Fixed in:6.8.0-1026.28USN-7383-1
linux-image-gcp-64kUbuntu
Fixed in:6.8.0-1026.28~22.04.1USN-7383-1
Fixed in:6.8.0-1026.28USN-7383-1
linux-image-gcp-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1026.28USN-7383-1
linux-image-gcp-lts-20.04Ubuntu
Fixed in:5.4.0.1143.145USN-7294-1
linux-image-gcp-lts-22.04Ubuntu
Fixed in:5.15.0.1077.73USN-7291-1
linux-image-gcp-lts-24.04Ubuntu
Fixed in:6.8.0-1026.28USN-7383-1
linux-image-genericUbuntu
Fixed in:5.4.0.208.204USN-7293-1
Fixed in:5.15.0.133.132USN-7288-1
Fixed in:6.8.0-56.58USN-7383-1
linux-image-generic-64kUbuntu
Fixed in:5.15.0.133.132USN-7288-1
Fixed in:6.8.0-56.58USN-7383-1
linux-image-generic-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.134.145~20.04.1USN-7331-1
Fixed in:5.15.0.133.132USN-7288-1
linux-image-generic-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-generic-hwe-18.04Ubuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
linux-image-generic-hwe-20.04Ubuntu
Fixed in:5.15.0.134.145~20.04.1USN-7331-1
Fixed in:5.15.0.133.132USN-7288-1
linux-image-generic-hwe-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-generic-lpaeUbuntu
Fixed in:5.4.0.208.204USN-7293-1
Fixed in:5.15.0.133.132USN-7288-1
Fixed in:6.8.0-56.58USN-7383-1
linux-image-generic-lpae-hwe-20.04Ubuntu
Fixed in:5.15.0.134.145~20.04.1USN-7331-1
Fixed in:5.15.0.133.132USN-7288-1
linux-image-gkeUbuntu
Fixed in:5.15.0.1075.74USN-7291-1
Fixed in:6.8.0-1021.25USN-7383-1
linux-image-gke-5.15Ubuntu
Fixed in:5.15.0.1075.74USN-7291-1
linux-image-gkeopUbuntu
Fixed in:5.15.0.1060.59USN-7289-1
Fixed in:6.8.0-1008.10USN-7383-1
linux-image-gkeop-5.15Ubuntu
Fixed in:5.15.0.1060.59USN-7289-1
linux-image-gkeop-6.8Ubuntu
Fixed in:6.8.0-1008.10USN-7383-1
linux-image-ibmUbuntu
Fixed in:5.4.0.1086.91~18.04.1USN-7294-1
Fixed in:5.15.0.1074.77~20.04.1USN-7458-1
Fixed in:5.15.0.1070.66USN-7289-3
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-ibm-classicUbuntu
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-ibm-lts-20.04Ubuntu
Fixed in:5.4.0.1086.115USN-7294-3
linux-image-ibm-lts-24.04Ubuntu
Fixed in:6.8.0-1022.22USN-7385-1
linux-image-intelUbuntu
Fixed in:5.15.0.1073.79~20.04.2USN-7289-4
linux-image-intel-iotgUbuntu
Fixed in:5.15.0.1073.79~20.04.2USN-7289-4
Fixed in:5.15.0.1073.73USN-7289-4
linux-image-kvmUbuntu
Fixed in:5.4.0.1127.123USN-7294-4
Fixed in:5.15.0.1076.72USN-7388-1
Fixed in:6.8.0-56.58USN-7383-1
linux-image-lowlatencyUbuntu
Fixed in:5.4.0.208.204USN-7293-1
Fixed in:5.15.0.133.120USN-7288-1
Fixed in:6.8.0-56.58.1USN-7383-1
linux-image-lowlatency-64kUbuntu
Fixed in:5.15.0.133.120USN-7288-1
Fixed in:6.8.0-56.58.1USN-7383-1
linux-image-lowlatency-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.133.143~20.04.1USN-7288-2
Fixed in:5.15.0.133.120USN-7288-1
linux-image-lowlatency-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-56.58.1~22.04.1USN-7383-1
linux-image-lowlatency-hwe-18.04Ubuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
linux-image-lowlatency-hwe-20.04Ubuntu
Fixed in:5.15.0.133.143~20.04.1USN-7288-2
Fixed in:5.15.0.133.120USN-7288-1
linux-image-lowlatency-hwe-22.04Ubuntu
Fixed in:6.8.0-56.58.1~22.04.1USN-7383-1
linux-image-nvidiaUbuntu
Fixed in:5.15.0.1072.72USN-7289-1
Fixed in:6.8.0-1024.27USN-7383-1
linux-image-nvidia-6.8Ubuntu
Fixed in:6.8.0-1024.27~22.04.1USN-7383-1
linux-image-nvidia-64kUbuntu
Fixed in:6.8.0-1024.27USN-7383-1
linux-image-nvidia-64k-6.8Ubuntu
Fixed in:6.8.0-1024.27~22.04.1USN-7383-1
linux-image-nvidia-64k-hwe-22.04Ubuntu
Fixed in:6.8.0-1024.27~22.04.1USN-7383-1
linux-image-nvidia-hwe-22.04Ubuntu
Fixed in:6.8.0-1024.27~22.04.1USN-7383-1
linux-image-nvidia-lowlatencyUbuntu
Fixed in:5.15.0.1072.72USN-7289-1
Fixed in:6.8.0-1024.27.1USN-7383-1
linux-image-nvidia-lowlatency-64kUbuntu
Fixed in:6.8.0-1024.27.1USN-7383-1
linux-image-nvidia-tegraUbuntu
Fixed in:5.15.0.1033.33USN-7389-1
linux-image-nvidia-tegra-igxUbuntu
Fixed in:5.15.0.1021.23USN-7389-1
linux-image-nvidia-tegra-igx-rtUbuntu
Fixed in:5.15.0.1021.23USN-7389-1
linux-image-nvidia-tegra-rtUbuntu
Fixed in:5.15.0.1033.33USN-7389-1
linux-image-oemUbuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
Fixed in:5.4.0.208.204USN-7293-1
linux-image-oem-20.04Ubuntu
Fixed in:5.15.0.134.145~20.04.1USN-7331-1
Fixed in:5.15.0.133.132USN-7288-1
linux-image-oem-20.04bUbuntu
Fixed in:5.15.0.134.145~20.04.1USN-7331-1
linux-image-oem-20.04cUbuntu
Fixed in:5.15.0.134.145~20.04.1USN-7331-1
linux-image-oem-20.04dUbuntu
Fixed in:5.15.0.134.145~20.04.1USN-7331-1
linux-image-oem-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
Fixed in:6.8.0-56.58USN-7383-1
linux-image-oem-22.04aUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-22.04bUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-22.04cUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-22.04dUbuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-oem-24.04Ubuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-image-oem-24.04aUbuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-image-oem-24.04bUbuntu
Fixed in:6.11.0-1015.15USN-7310-1
linux-image-oem-osp1Ubuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
Fixed in:5.4.0.208.204USN-7293-1
linux-image-oracleUbuntu
Fixed in:5.4.0.1138.147~18.04.1USN-7294-2
Fixed in:5.15.0.1075.81~20.04.1USN-7289-2
Fixed in:6.8.0-1022.23~22.04.1USN-7383-1
Fixed in:6.8.0-1022.23USN-7383-1
linux-image-oracle-64kUbuntu
Fixed in:6.8.0-1022.23~22.04.1USN-7383-1
Fixed in:6.8.0-1022.23USN-7383-1
linux-image-oracle-64k-lts-24.04Ubuntu
Fixed in:6.8.0-1022.23USN-7383-1
linux-image-oracle-lts-20.04Ubuntu
Fixed in:5.4.0.1138.131USN-7294-2
linux-image-oracle-lts-22.04Ubuntu
Fixed in:5.15.0.1075.71USN-7289-1
linux-image-oracle-lts-24.04Ubuntu
Fixed in:6.8.0-1022.23USN-7383-1
linux-image-raspiUbuntu
Fixed in:5.4.0.1129.160USN-7539-1
Fixed in:5.15.0.1072.70USN-7305-1
Fixed in:6.8.0-1028.32USN-7524-1
linux-image-raspi-hwe-18.04Ubuntu
Fixed in:5.4.0.1129.142~18.04.1USN-7540-1
linux-image-raspi-nolpaeUbuntu
Fixed in:5.15.0.1072.70USN-7305-1
linux-image-raspi-realtimeUbuntu
Fixed in:6.8.0-2023.24USN-7523-1
linux-image-raspi2Ubuntu
Fixed in:5.4.0.1129.160USN-7539-1
linux-image-realtimeUbuntu
Fixed in:6.8.1-1018.19USN-7383-2
linux-image-realtime-hwe-24.04Ubuntu
Fixed in:6.8.1-1018.19USN-7383-2
linux-image-snapdragon-hwe-18.04Ubuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
linux-image-virtualUbuntu
Fixed in:5.4.0.208.204USN-7293-1
Fixed in:5.15.0.133.132USN-7288-1
Fixed in:6.8.0-56.58USN-7383-1
linux-image-virtual-hwe-18.04Ubuntu
Fixed in:5.4.0.208.228~18.04.1USN-7293-1
linux-image-virtual-hwe-20.04Ubuntu
Fixed in:5.15.0.134.145~20.04.1USN-7331-1
Fixed in:5.15.0.133.132USN-7288-1
linux-image-virtual-hwe-22.04Ubuntu
Fixed in:6.8.0-57.59~22.04.1USN-7403-1
linux-image-xilinx-zynqmpUbuntu
Fixed in:5.4.0.1058.58USN-7295-1
Fixed in:5.15.0.1044.48USN-7390-1
linux-intel-iotgUbuntu
Fixed in:5.15.0-1073.79USN-7289-4
linux-intel-iotg-5.15Ubuntu
Fixed in:5.15.0-1073.79~20.04.2USN-7289-4
linux-iotUbuntu
Fixed in:5.4.0-1048.51USN-7413-1
linux-kvmUbuntu
Fixed in:5.4.0-1127.136USN-7294-4
Fixed in:5.15.0-1076.81USN-7388-1
linux-lowlatencyUbuntu
Fixed in:5.15.0-133.143USN-7288-1
Fixed in:6.8.0-56.58.1USN-7383-1
linux-lowlatency-hwe-5.15Ubuntu
Fixed in:5.15.0-133.143~20.04.1USN-7288-2
linux-lowlatency-hwe-6.8Ubuntu
Fixed in:6.8.0-56.58.1~22.04.1USN-7383-1
linux-nvidiaUbuntu
Fixed in:5.15.0-1072.73USN-7289-1
Fixed in:6.8.0-1024.27USN-7383-1
linux-nvidia-6.8Ubuntu
Fixed in:6.8.0-1024.27~22.04.1USN-7383-1
linux-nvidia-lowlatencyUbuntu
Fixed in:6.8.0-1024.27.1USN-7383-1
linux-nvidia-tegraUbuntu
Fixed in:5.15.0-1033.33USN-7389-1
linux-nvidia-tegra-igxUbuntu
Fixed in:5.15.0-1021.21USN-7389-1
linux-oem-6.11Ubuntu
Fixed in:6.11.0-1015.15USN-7310-1
linux-oem-6.8Ubuntu
Fixed in:6.8.0-1024.24USN-7386-1
linux-oracleUbuntu
Fixed in:5.4.0-1138.147USN-7294-2
Fixed in:5.15.0-1075.81USN-7289-1
Fixed in:6.8.0-1022.23USN-7383-1
linux-oracle-5.15Ubuntu
Fixed in:5.15.0-1075.81~20.04.1USN-7289-2
linux-oracle-5.4Ubuntu
Fixed in:5.4.0-1138.147~18.04.1USN-7294-2
linux-oracle-6.8Ubuntu
Fixed in:6.8.0-1022.23~22.04.1USN-7383-1
linux-raspiUbuntu
Fixed in:5.4.0-1129.142USN-7539-1
Fixed in:5.15.0-1072.75USN-7305-1
Fixed in:6.8.0-1028.32USN-7524-1
linux-raspi-5.4Ubuntu
Fixed in:5.4.0-1129.142~18.04.1USN-7540-1
linux-raspi-realtimeUbuntu
Fixed in:6.8.0-2023.24USN-7523-1
linux-realtimeUbuntu
Fixed in:6.8.1-1018.19USN-7383-2
linux-xilinx-zynqmpUbuntu
Fixed in:5.4.0-1058.62USN-7295-1
Fixed in:5.15.0-1044.48USN-7390-1

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 ComplexityHigh
Privileges RequiredLow
User InteractionNone
ScopeUnchanged

Impact

ConfidentialityNone
IntegrityNone
AvailabilityHigh

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

Exploit Intelligence

0.21%probability of exploitation in 30 days
11thpercentile

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

References

Embed a live status badge for CVE-2024-50082
CVE-2024-50082 severity badge

Markdown

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

HTML

<a href="https://tridentstack.com/cve/CVE-2024-50082"><img src="https://tridentstack.com/cve/badge/CVE-2024-50082.svg" alt="CVE-2024-50082"></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-11-03.