CVE & CISA-KEV Catalog

CVE-2024-26737

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: bpf: Fix racing between bpf_timer_cancel_and_free and bpf_timer_cancel The following race is possible between bpf_timer_cancel_and_free and bpf_timer_cancel. It will lead a UAF on the timer->timer. bpf_timer_cancel(); spin_lock(); t = timer->time; spin_unlock(); bpf_timer_cancel_and_free(); spin_lock(); t = timer->timer; timer->timer = NULL; spin_unlock(); hrtimer_cancel(&t->timer); kfree(t); /* UAF on t */ hrtimer_cancel(&t->timer); In bpf_timer_cancel_and_free, this patch frees the timer->timer after a rcu grace period. This requires a rcu_head addition to the "struct bpf_hrtimer". Another kfree(t) happens in bpf_timer_init, this does not need a kfree_rcu because it is still under the spin_lock and timer->timer has not been visible by others yet. In bpf_timer_cancel, rcu_read_lock() is added because this helper can be used in a non rcu critical section context (e.g. from a sleepable bpf prog). Other timer->timer usages in helpers.c have been audited, bpf_timer_cancel() is the only place where timer->timer is used outside of the spin_lock. Another solution considered is to mark a t->flag in bpf_timer_cancel and clear it after hrtimer_cancel() is done. In bpf_timer_cancel_and_free, it busy waits for the flag to be cleared before kfree(t). This patch goes with a straight forward solution and frees timer->timer after a rcu grace period.

How to fix

Remediation Available
linuxDebian
Fixed in:6.1.82-1CVE-2024-26737
Fixed in:6.7.7-1CVE-2024-26737
Fixed in:6.7.7-1CVE-2024-26737
bpftoolRocky
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
bpftoolRed Hat / RHEL
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
bpftool-debuginfoRocky
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.0.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:7.3.0-427.28.1.el9_4RHSA-2024:4928
kernelRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernelRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64kRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-coreRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-64k-debugRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-develRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-modulesRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-abi-stablelistsRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-coreRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-debugRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-debugRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-debug-coreRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debug-debuginfoRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debug-develRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debug-modulesRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-debug-modules-extraRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-debuginfoRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debuginfo-common-s390xRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-develRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-develRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-devel-matchedRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-docRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-docRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-modulesRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-modules-coreRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-modules-extraRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rtRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rtRocky
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-coreRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-debugRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-debugRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-debug-coreRocky
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-debug-debuginfoRocky
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-debug-develRocky
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-debug-kvmRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-debug-modulesRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-debug-modules-extraRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-debuginfoRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-develRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-develRocky
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-kvmRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-modulesRocky
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-rt-modules-extraRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.rt14.362.el9_2RHSA-2024:5067
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-toolsRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-toolsRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-tools-debuginfoRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-tools-libsRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-tools-libsRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-tools-libs-develRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-uki-virtRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-zfcpdumpRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-zfcpdump-coreRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-zfcpdump-debuginfoRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-zfcpdump-develRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-zfcpdump-modulesRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
kernel-zfcpdump-modules-extraRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
libperfRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
libperfRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
libperf-debuginfoRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
perfRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
perfRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
perf-debuginfoRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
perf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
python3-perfRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
python3-perfRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
python3-perf-debuginfoRocky
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
rtlaRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-284.77.1.el9_2RHSA-2024:5066
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
rvRed Hat / RHEL
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
rvRocky
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
Fixed in:0:5.14.0-427.28.1.el9_4RHSA-2024:4928
linuxUbuntu
Fixed in:5.15.0-112.122USN-6820-1
linux-awsUbuntu
Fixed in:5.15.0-1063.69USN-6821-3
linux-aws-5.15Ubuntu
Fixed in:5.15.0-1063.69~20.04.1USN-6821-3
linux-azureUbuntu
Fixed in:5.15.0-1066.75USN-6821-4
linux-azure-fdeUbuntu
Fixed in:5.15.0-1065.74.1USN-6821-4
linux-gcpUbuntu
Fixed in:5.15.0-1062.70USN-6820-1
linux-gcp-5.15Ubuntu
Fixed in:5.15.0-1062.70~20.04.1USN-6820-1
linux-gkeUbuntu
Fixed in:5.15.0-1060.66USN-6821-1
linux-gkeopUbuntu
Fixed in:5.15.0-1046.53USN-6821-2
linux-gkeop-5.15Ubuntu
Fixed in:5.15.0-1046.53~20.04.1USN-6821-2
linux-hwe-5.15Ubuntu
Fixed in:5.15.0-113.123~20.04.1USN-6871-1
linux-ibmUbuntu
Fixed in:5.15.0-1056.59USN-6821-1
linux-ibm-5.15Ubuntu
Fixed in:5.15.0-1057.60~20.04.1USN-6892-1
linux-image-5.15.0-1030-xilinx-zynqmpUbuntu
Fixed in:5.15.0-1030.34USN-6820-1
linux-image-5.15.0-1046-gkeopUbuntu
Fixed in:5.15.0-1046.53~20.04.1USN-6821-2
Fixed in:5.15.0-1046.53USN-6821-2
linux-image-5.15.0-1056-ibmUbuntu
Fixed in:5.15.0-1056.59USN-6821-1
linux-image-5.15.0-1057-ibmUbuntu
Fixed in:5.15.0-1057.60~20.04.1USN-6892-1
linux-image-5.15.0-1058-intel-iotgUbuntu
Fixed in:5.15.0-1058.64~20.04.1USN-6828-1
Fixed in:5.15.0-1058.64USN-6821-1
linux-image-5.15.0-1058-nvidiaUbuntu
Fixed in:5.15.0-1058.59USN-6820-2
linux-image-5.15.0-1058-nvidia-lowlatencyUbuntu
Fixed in:5.15.0-1058.59USN-6820-2
linux-image-5.15.0-1058-raspiUbuntu
Fixed in:5.15.0-1058.61USN-6919-1
linux-image-5.15.0-1060-gkeUbuntu
Fixed in:5.15.0-1060.66USN-6821-1
linux-image-5.15.0-1060-kvmUbuntu
Fixed in:5.15.0-1060.65USN-6821-2
linux-image-5.15.0-1061-oracleUbuntu
Fixed in:5.15.0-1061.67USN-6821-1
linux-image-5.15.0-1062-gcpUbuntu
Fixed in:5.15.0-1062.70~20.04.1USN-6820-1
Fixed in:5.15.0-1062.70USN-6820-1
linux-image-5.15.0-1063-awsUbuntu
Fixed in:5.15.0-1063.69~20.04.1USN-6821-3
Fixed in:5.15.0-1063.69USN-6821-3
linux-image-5.15.0-1065-azure-fdeUbuntu
Fixed in:5.15.0-1065.74.1USN-6821-4
linux-image-5.15.0-1066-azureUbuntu
Fixed in:5.15.0-1066.75USN-6821-4
linux-image-5.15.0-110-lowlatencyUbuntu
Fixed in:5.15.0-110.120~20.04.1USN-6820-1
Fixed in:5.15.0-110.120USN-6820-1
linux-image-5.15.0-110-lowlatency-64kUbuntu
Fixed in:5.15.0-110.120~20.04.1USN-6820-1
Fixed in:5.15.0-110.120USN-6820-1
linux-image-5.15.0-112-genericUbuntu
Fixed in:5.15.0-112.122USN-6820-1
linux-image-5.15.0-112-generic-64kUbuntu
Fixed in:5.15.0-112.122USN-6820-1
linux-image-5.15.0-112-generic-lpaeUbuntu
Fixed in:5.15.0-112.122USN-6820-1
linux-image-5.15.0-113-genericUbuntu
Fixed in:5.15.0-113.123~20.04.1USN-6871-1
linux-image-5.15.0-113-generic-64kUbuntu
Fixed in:5.15.0-113.123~20.04.1USN-6871-1
linux-image-5.15.0-113-generic-lpaeUbuntu
Fixed in:5.15.0-113.123~20.04.1USN-6871-1
linux-image-awsUbuntu
Fixed in:5.15.0.1063.69~20.04.1USN-6821-3
linux-image-aws-lts-22.04Ubuntu
Fixed in:5.15.0.1063.63USN-6821-3
linux-image-azure-fde-lts-22.04Ubuntu
Fixed in:5.15.0.1065.74.43USN-6821-4
linux-image-azure-lts-22.04Ubuntu
Fixed in:5.15.0.1066.64USN-6821-4
linux-image-gcpUbuntu
Fixed in:5.15.0.1062.70~20.04.1USN-6820-1
linux-image-gcp-lts-22.04Ubuntu
Fixed in:5.15.0.1062.58USN-6820-1
linux-image-genericUbuntu
Fixed in:5.15.0.112.112USN-6820-1
linux-image-generic-64kUbuntu
Fixed in:5.15.0.112.112USN-6820-1
linux-image-generic-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.113.123~20.04.1USN-6871-1
linux-image-generic-hwe-20.04Ubuntu
Fixed in:5.15.0.113.123~20.04.1USN-6871-1
linux-image-generic-lpaeUbuntu
Fixed in:5.15.0.112.112USN-6820-1
linux-image-generic-lpae-hwe-20.04Ubuntu
Fixed in:5.15.0.113.123~20.04.1USN-6871-1
linux-image-gkeUbuntu
Fixed in:5.15.0.1060.59USN-6821-1
linux-image-gke-5.15Ubuntu
Fixed in:5.15.0.1060.59USN-6821-1
linux-image-gkeopUbuntu
Fixed in:5.15.0.1046.45USN-6821-2
linux-image-gkeop-5.15Ubuntu
Fixed in:5.15.0.1046.53~20.04.1USN-6821-2
Fixed in:5.15.0.1046.45USN-6821-2
linux-image-ibmUbuntu
Fixed in:5.15.0.1057.60~20.04.1USN-6892-1
Fixed in:5.15.0.1056.52USN-6821-1
linux-image-intelUbuntu
Fixed in:5.15.0.1058.64~20.04.1USN-6828-1
linux-image-intel-iotgUbuntu
Fixed in:5.15.0.1058.64~20.04.1USN-6828-1
Fixed in:5.15.0.1058.58USN-6821-1
linux-image-kvmUbuntu
Fixed in:5.15.0.1060.56USN-6821-2
linux-image-lowlatencyUbuntu
Fixed in:5.15.0.110.103USN-6820-1
linux-image-lowlatency-64kUbuntu
Fixed in:5.15.0.110.103USN-6820-1
linux-image-lowlatency-64k-hwe-20.04Ubuntu
Fixed in:5.15.0.110.120~20.04.1USN-6820-1
linux-image-lowlatency-hwe-20.04Ubuntu
Fixed in:5.15.0.110.120~20.04.1USN-6820-1
linux-image-nvidiaUbuntu
Fixed in:5.15.0.1058.58USN-6820-2
linux-image-nvidia-lowlatencyUbuntu
Fixed in:5.15.0.1058.58USN-6820-2
linux-image-oem-20.04Ubuntu
Fixed in:5.15.0.113.123~20.04.1USN-6871-1
linux-image-oem-20.04bUbuntu
Fixed in:5.15.0.113.123~20.04.1USN-6871-1
linux-image-oem-20.04cUbuntu
Fixed in:5.15.0.113.123~20.04.1USN-6871-1
linux-image-oem-20.04dUbuntu
Fixed in:5.15.0.113.123~20.04.1USN-6871-1
linux-image-oracle-lts-22.04Ubuntu
Fixed in:5.15.0.1061.57USN-6821-1
linux-image-raspiUbuntu
Fixed in:5.15.0.1058.56USN-6919-1
linux-image-raspi-nolpaeUbuntu
Fixed in:5.15.0.1058.56USN-6919-1
linux-image-virtualUbuntu
Fixed in:5.15.0.112.112USN-6820-1
linux-image-virtual-hwe-20.04Ubuntu
Fixed in:5.15.0.113.123~20.04.1USN-6871-1
linux-image-xilinx-zynqmpUbuntu
Fixed in:5.15.0.1030.34USN-6820-1
linux-intel-iotgUbuntu
Fixed in:5.15.0-1058.64USN-6821-1
linux-intel-iotg-5.15Ubuntu
Fixed in:5.15.0-1058.64~20.04.1USN-6828-1
linux-kvmUbuntu
Fixed in:5.15.0-1060.65USN-6821-2
linux-lowlatencyUbuntu
Fixed in:5.15.0-110.120USN-6820-1
linux-lowlatency-hwe-5.15Ubuntu
Fixed in:5.15.0-110.120~20.04.1USN-6820-1
linux-nvidiaUbuntu
Fixed in:5.15.0-1058.59USN-6820-2
linux-oracleUbuntu
Fixed in:5.15.0-1061.67USN-6821-1
linux-raspiUbuntu
Fixed in:5.15.0-1058.61USN-6919-1
linux-xilinx-zynqmpUbuntu
Fixed in:5.15.0-1030.34USN-6820-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 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.24%probability of exploitation in 30 days
15thpercentile

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

References

Related Vulnerabilities

Other CWE-416 (Use After Free) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2019-0708Critical9.8100%KEV + Ransom-
CVE-2021-31166Critical9.8100%KEVFix
CVE-2015-5119Critical9.899%KEV-
CVE-2010-3962High8.197%KEV-
CVE-2015-0313Critical9.896%KEVFix
CVE-2017-9798High7.595%-Fix
Embed a live status badge for CVE-2024-26737
CVE-2024-26737 severity badge

Markdown

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

HTML

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