CVE & CISA-KEV Catalog

CVE-2024-26853

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: igc: avoid returning frame twice in XDP_REDIRECT When a frame can not be transmitted in XDP_REDIRECT (e.g. due to a full queue), it is necessary to free it by calling xdp_return_frame_rx_napi. However, this is the responsibility of the caller of the ndo_xdp_xmit (see for example bq_xmit_all in kernel/bpf/devmap.c) and thus calling it inside igc_xdp_xmit (which is the ndo_xdp_xmit of the igc driver) as well will lead to memory corruption. In fact, bq_xmit_all expects that it can return all frames after the last successfully transmitted one. Therefore, break for the first not transmitted frame, but do not call xdp_return_frame_rx_napi in igc_xdp_xmit. This is equally implemented in other Intel drivers such as the igb. There are two alternatives to this that were rejected: 1. Return num_frames as all the frames would have been transmitted and release them inside igc_xdp_xmit. While it might work technically, it is not what the return value is meant to represent (i.e. the number of SUCCESSFULLY transmitted packets). 2. Rework kernel/bpf/devmap.c and all drivers to support non-consecutively dropped packets. Besides being complex, it likely has a negative performance impact without a significant gain since it is anyway unlikely that the next frame can be transmitted if the previous one was dropped. The memory corruption can be reproduced with the following script which leads to a kernel panic after a few seconds. It basically generates more traffic than a i225 NIC can transmit and pushes it via XDP_REDIRECT from a virtual interface to the physical interface where frames get dropped. #!/bin/bash INTERFACE=enp4s0 INTERFACE_IDX=`cat /sys/class/net/$INTERFACE/ifindex` sudo ip link add dev veth1 type veth peer name veth2 sudo ip link set up $INTERFACE sudo ip link set up veth1 sudo ip link set up veth2 cat << EOF > redirect.bpf.c SEC("prog") int redirect(struct xdp_md *ctx) { return bpf_redirect($INTERFACE_IDX, 0); } char _license[] SEC("license") = "GPL"; EOF clang -O2 -g -Wall -target bpf -c redirect.bpf.c -o redirect.bpf.o sudo ip link set veth2 xdp obj redirect.bpf.o cat << EOF > pass.bpf.c SEC("prog") int pass(struct xdp_md *ctx) { return XDP_PASS; } char _license[] SEC("license") = "GPL"; EOF clang -O2 -g -Wall -target bpf -c pass.bpf.c -o pass.bpf.o sudo ip link set $INTERFACE xdp obj pass.bpf.o cat << EOF > trafgen.cfg { /* Ethernet Header */ 0xe8, 0x6a, 0x64, 0x41, 0xbf, 0x46, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, const16(ETH_P_IP), /* IPv4 Header */ 0b01000101, 0, # IPv4 version, IHL, TOS const16(1028), # IPv4 total length (UDP length + 20 bytes (IP header)) const16(2), # IPv4 ident 0b01000000, 0, # IPv4 flags, fragmentation off 64, # IPv4 TTL 17, # Protocol UDP csumip(14, 33), # IPv4 checksum /* UDP Header */ 10, 0, 1, 1, # IP Src - adapt as needed 10, 0, 1, 2, # IP Dest - adapt as needed const16(6666), # UDP Src Port const16(6666), # UDP Dest Port const16(1008), # UDP length (UDP header 8 bytes + payload length) csumudp(14, 34), # UDP checksum /* Payload */ fill('W', 1000), } EOF sudo trafgen -i trafgen.cfg -b3000MB -o veth1 --cpp

How to fix

Remediation Available
linuxDebian
Fixed in:6.1.82-1CVE-2024-26853
Fixed in:6.7.12-1CVE-2024-26853
Fixed in:6.7.12-1CVE-2024-26853
bpftoolRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
bpftoolRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
bpftool-debuginfoRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.3.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:7.0.0-284.80.1.el9_2RHSA-2024:5672
kernelRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernelRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64kRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-coreRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-debugRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-develRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-modulesRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-abi-stablelistsRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-coreRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-cross-headersRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-cross-headersRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debugRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debugRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debug-coreRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debug-debuginfoRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debug-develRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debug-modulesRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debug-modules-extraRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debuginfoRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debuginfo-common-s390xRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-develRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-develRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-devel-matchedRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-docRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-docRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-headersRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-headersRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-modulesRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-modules-coreRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-modules-extraRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rtRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rtRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-coreRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debugRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debugRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-debug-coreRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debug-debuginfoRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debug-develRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debug-kvmRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-debug-modulesRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debug-modules-extraRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debuginfoRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-develRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-develRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-kvmRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-modulesRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
kernel-rt-modules-extraRocky
Fixed in:0:4.18.0-553.16.1.rt7.357.el8_10RHSA-2024:5102
Fixed in:0:5.14.0-284.80.1.rt14.365.el9_2RHSA-2024:5673
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-toolsRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-toolsRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-tools-debuginfoRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-tools-libsRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-tools-libsRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-tools-libs-develRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-uki-virtRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-zfcpdumpRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-zfcpdump-coreRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-zfcpdump-debuginfoRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-zfcpdump-develRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-zfcpdump-modulesRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
kernel-zfcpdump-modules-extraRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
libperfRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
libperfRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
libperf-debuginfoRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
perfRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
perfRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
perf-debuginfoRocky
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
python3-perfRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
python3-perfRed Hat / RHEL
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
python3-perf-debuginfoRocky
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-553.16.1.el8_10RHSA-2024:5101
Fixed in:0:4.18.0-477.70.1.el8_8RHSA-2024:6206
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
rtlaRocky
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
Fixed in:0:5.14.0-284.80.1.el9_2RHSA-2024:5672
rvRocky
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
rvRed Hat / RHEL
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363
Fixed in:0:5.14.0-427.31.1.el9_4RHSA-2024:5363

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.22%probability of exploitation in 30 days
13thpercentile

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

References

Related Vulnerabilities

Other CWE-787 (Out-of-bounds Write) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2025-22457Critical9.0100%KEV + RansomFix
CVE-2025-0282Critical9.0100%KEV + Ransom-
CVE-2015-3113Critical9.8100%KEVFix
CVE-2021-20038Critical9.8100%KEV + Ransom-
CVE-2023-4863High8.8100%KEVFix
CVE-2020-16040Medium6.5100%-Fix
Embed a live status badge for CVE-2024-26853
CVE-2024-26853 severity badge

Markdown

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

HTML

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