CVE & CISA-KEV Catalog

CVE-2023-52933

MEDIUM
5.5
CVSS v3
NVD

Description

In the Linux kernel, the following vulnerability has been resolved: Squashfs: fix handling and sanity checking of xattr_ids count A Sysbot [1] corrupted filesystem exposes two flaws in the handling and sanity checking of the xattr_ids count in the filesystem. Both of these flaws cause computation overflow due to incorrect typing. In the corrupted filesystem the xattr_ids value is 4294967071, which stored in a signed variable becomes the negative number -225. Flaw 1 (64-bit systems only): The signed integer xattr_ids variable causes sign extension. This causes variable overflow in the SQUASHFS_XATTR_*(A) macros. The variable is first multiplied by sizeof(struct squashfs_xattr_id) where the type of the sizeof operator is "unsigned long". On a 64-bit system this is 64-bits in size, and causes the negative number to be sign extended and widened to 64-bits and then become unsigned. This produces the very large number 18446744073709548016 or 2^64 - 3600. This number when rounded up by SQUASHFS_METADATA_SIZE - 1 (8191 bytes) and divided by SQUASHFS_METADATA_SIZE overflows and produces a length of 0 (stored in len). Flaw 2 (32-bit systems only): On a 32-bit system the integer variable is not widened by the unsigned long type of the sizeof operator (32-bits), and the signedness of the variable has no effect due it always being treated as unsigned. The above corrupted xattr_ids value of 4294967071, when multiplied overflows and produces the number 4294963696 or 2^32 - 3400. This number when rounded up by SQUASHFS_METADATA_SIZE - 1 (8191 bytes) and divided by SQUASHFS_METADATA_SIZE overflows again and produces a length of 0. The effect of the 0 length computation: In conjunction with the corrupted xattr_ids field, the filesystem also has a corrupted xattr_table_start value, where it matches the end of filesystem value of 850. This causes the following sanity check code to fail because the incorrectly computed len of 0 matches the incorrect size of the table reported by the superblock (0 bytes). len = SQUASHFS_XATTR_BLOCK_BYTES(*xattr_ids); indexes = SQUASHFS_XATTR_BLOCKS(*xattr_ids); /* * The computed size of the index table (len bytes) should exactly * match the table start and end points */ start = table_start + sizeof(*id_table); end = msblk->bytes_used; if (len != (end - start)) return ERR_PTR(-EINVAL); Changing the xattr_ids variable to be "usigned int" fixes the flaw on a 64-bit system. This relies on the fact the computation is widened by the unsigned long type of the sizeof operator. Casting the variable to u64 in the above macro fixes this flaw on a 32-bit system. It also means 64-bit systems do not implicitly rely on the type of the sizeof operator to widen the computation. [1] https://lore.kernel.org/lkml/[email protected]/

How to fix

Remediation Available
linuxDebian
Fixed in:5.10.178-1CVE-2023-52933
Fixed in:6.1.11-1CVE-2023-52933
Fixed in:6.1.11-1CVE-2023-52933
Fixed in:6.1.11-1CVE-2023-52933
bpftoolRocky
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
bpftoolRed Hat / RHEL
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
bpftool-debuginfoRocky
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:7.0.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:7.3.0-427.77.1.el9_4RHSA-2025:11245
kernelRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernelRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-64kRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64kRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-64k-coreRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-debugRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-64k-debug-coreRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-64k-debug-develRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-debug-devel-matchedRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-debug-modulesRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-64k-debuginfoRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-64k-develRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-64k-devel-matchedRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-64k-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-modulesRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-modules-coreRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-64k-modules-extraRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-abi-stablelistsRed Hat / RHEL
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-abi-stablelistsRocky
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
kernel-coreRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
kernel-debugRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
kernel-debugRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-debug-coreRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-debug-debuginfoRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
kernel-debug-develRocky
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-debug-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-debug-devel-matchedRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-debug-modulesRocky
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-debug-modules-coreRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-debug-modules-extraRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-debug-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-debug-uki-virtRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-debuginfoRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-debuginfo-common-aarch64Red Hat / RHEL
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-debuginfo-common-aarch64Rocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-debuginfo-common-ppc64leRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-debuginfo-common-ppc64leRocky
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-debuginfo-common-s390xRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
kernel-debuginfo-common-s390xRed Hat / RHEL
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-debuginfo-common-x86_64Rocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
kernel-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-develRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
kernel-develRed Hat / RHEL
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-devel-matchedRocky
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-docRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-docRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-modulesRocky
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-modulesRed Hat / RHEL
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
kernel-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-modules-coreRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
kernel-modules-extraRocky
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-rtRed Hat / RHEL
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
kernel-rtRocky
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64kRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64kRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-coreRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debugRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debugRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-coreRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-debuginfoRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-develRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-modulesRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-modules-coreRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debug-modules-extraRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-debuginfoRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-develRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-develRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-modulesRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-modulesRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-modules-coreRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-modules-extraRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-64k-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-coreRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
kernel-rt-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-debugRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-rt-debugRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-debug-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-debug-coreRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-rt-debug-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-rt-debug-debuginfoRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
kernel-rt-debug-develRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
kernel-rt-debug-develRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-rt-debug-kvmRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
kernel-rt-debug-kvmRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
kernel-rt-debug-modulesRocky
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-debug-modulesRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
kernel-rt-debug-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-debug-modules-coreRocky
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-debug-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-rt-debug-modules-extraRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
kernel-rt-debuginfoRocky
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-rt-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
kernel-rt-debuginfo-common-x86_64Rocky
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
kernel-rt-debuginfo-common-x86_64Red Hat / RHEL
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
kernel-rt-develRocky
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-rt-develRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-rt-kvmRocky
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-rt-kvmRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-rt-modulesRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
kernel-rt-modulesRocky
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
kernel-rt-modules-coreRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
kernel-rt-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
kernel-rt-modules-extraRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
kernel-rt-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.rt14.410.el9_2RHSA-2025:10527
Fixed in:0:5.14.0-70.138.1.rt21.210.el9_0RHSA-2025:10829
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-toolsRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-toolsRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-tools-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-tools-debuginfoRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-tools-libsRed Hat / RHEL
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-tools-libsRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-tools-libs-develRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-tools-libs-develRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-uki-virtRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-uki-virtRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-uki-virt-addonsRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-uki-virt-addonsRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-zfcpdumpRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-zfcpdumpRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
kernel-zfcpdump-coreRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-zfcpdump-coreRed Hat / RHEL
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-zfcpdump-debuginfoRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-zfcpdump-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-zfcpdump-develRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-zfcpdump-develRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
kernel-zfcpdump-devel-matchedRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-zfcpdump-devel-matchedRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-zfcpdump-modulesRocky
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
kernel-zfcpdump-modulesRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-zfcpdump-modules-coreRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-zfcpdump-modules-coreRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
kernel-zfcpdump-modules-extraRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
kernel-zfcpdump-modules-extraRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
libperfRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
libperfRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
libperf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
libperf-debuginfoRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
perfRocky
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
perfRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
perf-debuginfoRocky
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
perf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
python3-perfRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
python3-perfRocky
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
python3-perf-debuginfoRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
python3-perf-debuginfoRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-70.138.1.el9_0RHSA-2025:10830
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
rtlaRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
rtlaRed Hat / RHEL
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-284.125.1.el9_2RHSA-2025:11045
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
rvRed Hat / RHEL
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
rvRocky
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245
Fixed in:0:5.14.0-570.24.1.el9_6RHSA-2025:9880
Fixed in:0:5.14.0-427.77.1.el9_4RHSA-2025:11245

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

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

References

Related Vulnerabilities

Other CWE-190 (Integer Overflow) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2020-16040Medium6.5100%-Fix
CVE-2019-11477High7.599%-Fix
CVE-2023-44443High7.894%-Fix
CVE-2014-0569High9.390%--
CVE-2017-3599High7.590%-Fix
CVE-2023-21716Critical9.882%-Fix
Embed a live status badge for CVE-2023-52933
CVE-2023-52933 severity badge

Markdown

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

HTML

<a href="https://tridentstack.com/cve/CVE-2023-52933"><img src="https://tridentstack.com/cve/badge/CVE-2023-52933.svg" alt="CVE-2023-52933"></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-10-28.