GCVE Workshop - 22 September 2026 (14:00-18:00), Luxembourg Before The Vulnopticon Conference - Registration

RHSA-2026:38902

Vulnerability from csaf_redhat - Published: 2026-07-13 13:42 - Updated: 2026-09-15 13:47
Summary
Red Hat Security Advisory: kernel security, bug fix, and enhancement update
Severity
Important
Notes
Topic: An update for kernel is now available for Red Hat Enterprise Linux 9.6 Extended Update Support. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.
Details: The kernel packages contain the Linux kernel, the core of any Linux operating system. Security Fix(es): * kernel: ima: don't clear IMA_DIGSIG flag when setting or removing non-IMA xattr (CVE-2025-68183) * kernel: Bluetooth: SCO: Fix use-after-free in sco_recv_frame() due to missing sock_hold (CVE-2026-31408) * kernel: eventpoll: defer struct eventpoll free to RCU grace period (CVE-2026-43074) * kernel: ALSA: usb-audio: Add sanity check for OOB writes at silencing (CVE-2026-43279) * kernel: gfs2: Fix use-after-free in iomap inline data write path (CVE-2026-45984) * kernel: wifi: mac80211: drop stray 'static' from fast-RX rx_result (CVE-2026-46152) * kernel: RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path (CVE-2026-46189) * kernel: nvmet-tcp: fix race between ICReq handling and queue teardown (CVE-2026-46135) * kernel: eventpoll: fix ep_remove struct eventpoll / struct file UAF (CVE-2026-46242) * kernel: KVM: arm64: vgic-its: Drop the translation cache reference only for the erased entry (CVE-2026-46316) * kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected role (CVE-2026-53359) Bug Fix(es) and Enhancement(s): * Possible THP Stalls on Multi-NUMA Systems for HANA on RHEL [rhel-9.6.z] (JIRA:RHEL-164774) * crypto: testmgr - allow authenc(hmac(sha{256,384}),cts(cbc(aes))) in FIPS mode [rhel-9.6.z] (JIRA:RHEL-182539) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
Terms of Use: This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.

In the Linux kernel, the following vulnerability has been resolved: ima: don't clear IMA_DIGSIG flag when setting or removing non-IMA xattr Currently when both IMA and EVM are in fix mode, the IMA signature will be reset to IMA hash if a program first stores IMA signature in security.ima and then writes/removes some other security xattr for the file. For example, on Fedora, after booting the kernel with "ima_appraise=fix evm=fix ima_policy=appraise_tcb" and installing rpm-plugin-ima, installing/reinstalling a package will not make good reference IMA signature generated. Instead IMA hash is generated, # getfattr -m - -d -e hex /usr/bin/bash # file: usr/bin/bash security.ima=0x0404... This happens because when setting security.selinux, the IMA_DIGSIG flag that had been set early was cleared. As a result, IMA hash is generated when the file is closed. Similarly, IMA signature can be cleared on file close after removing security xattr like security.evm or setting/removing ACL. Prevent replacing the IMA file signature with a file hash, by preventing the IMA_DIGSIG flag from being reset. Here's a minimal C reproducer which sets security.selinux as the last step which can also replaced by removing security.evm or setting ACL, #include <stdio.h> #include <sys/xattr.h> #include <fcntl.h> #include <unistd.h> #include <string.h> #include <stdlib.h> int main() { const char* file_path = "/usr/sbin/test_binary"; const char* hex_string = "030204d33204490066306402304"; int length = strlen(hex_string); char* ima_attr_value; int fd; fd = open(file_path, O_WRONLY|O_CREAT|O_EXCL, 0644); if (fd == -1) { perror("Error opening file"); return 1; } ima_attr_value = (char*)malloc(length / 2 ); for (int i = 0, j = 0; i < length; i += 2, j++) { sscanf(hex_string + i, "%2hhx", &ima_attr_value[j]); } if (fsetxattr(fd, "security.ima", ima_attr_value, length/2, 0) == -1) { perror("Error setting extended attribute"); close(fd); return 1; } const char* selinux_value= "system_u:object_r:bin_t:s0"; if (fsetxattr(fd, "security.selinux", selinux_value, strlen(selinux_value), 0) == -1) { perror("Error setting extended attribute"); close(fd); return 1; } close(fd); return 0; }

CWE-354 - Improper Validation of Integrity Check Value
Affected products
Product Identifier Version Remediation
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.127.1.el9_6.noarch
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.127.1.el9_6.src
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.127.1.el9_6.noarch
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.s390x
Vendor Fix fix
Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.aarch64
Vendor Fix fix
Unresolved product id: RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.127.1.el9_6.x86_64
Vendor Fix fix
Threats
Impact Moderate

A flaw was found in the Linux kernel's Bluetooth SCO (Synchronous Connection-Oriented) protocol implementation. The `sco_recv_frame()` function fails to properly hold a reference to a socket after releasing a lock. This oversight allows a concurrent operation to free the socket while it is still being accessed, leading to a use-after-free vulnerability. A local attacker could potentially exploit this to cause memory corruption or a denial of service.

CWE-911 - Improper Update of Reference Count
Affected products
Fixed 305 products, the same list as for CVE-2025-68183
Threats
Impact Moderate

A flaw was found in the Linux kernel's `eventpoll` component. In certain situations, the `ep_free()` function in `eventpoll.c` can prematurely free the `eventpoll` data structure while it is still being used by another concurrent thread. This use-after-free (UAF) vulnerability could allow a local attacker to cause a denial of service or potentially escalate privileges.

CWE-825 - Expired Pointer Dereference
Affected products
Fixed 305 products, the same list as for CVE-2025-68183
Threats
Impact Moderate

A flaw was found in the Linux kernel's ALSA (Advanced Linux Sound Architecture) USB audio subsystem. An inconsistency in how USB audio playback and capture streams are handled can lead to an out-of-bounds write to a memory buffer. This can result in a system crash, causing a denial of service for a local user.

CWE-787 - Out-of-bounds Write
Affected products
Fixed 305 products, the same list as for CVE-2025-68183
Threats
Impact Moderate

A flaw was found in the Linux kernel's GFS2 filesystem. This memory corruption vulnerability, a use-after-free, occurs in the iomap inline data write path. The issue arises because a data buffer is released prematurely while still being referenced, leading to a write to freed memory. This could allow a local attacker to cause system instability or a denial of service (DoS).

CWE-826 - Premature Release of Resource During Expected Lifetime
Affected products
Fixed 305 products, the same list as for CVE-2025-68183
Threats
Impact Important

A flaw was found in the Linux kernel's KVM (Kernel-based Virtual Machine) x86 shadow paging mechanism. This use-after-free vulnerability arises from incorrect handling of Guest Frame Numbers (GFNs) when guest page tables are modified. A local attacker with control over a guest virtual machine could exploit this to dereference freed memory, potentially leading to information disclosure, privilege escalation, or a denial of service (DoS).

CWE-416 - Use After Free
Affected products
Fixed 305 products, the same list as for CVE-2025-68183
Threats
Impact Moderate

A flaw was found in the Linux kernel's NVMe over TCP (nvmet-tcp) implementation. A race condition exists between the handling of an Initialization Connection Request (ICReq) and the teardown of a queue. A remote attacker, by sending an ICReq and immediately closing the connection, could trigger a double free vulnerability. This could lead to a denial of service (DoS) due to memory corruption.

CWE-1341 - Multiple Releases of Same Resource or Handle
Affected products
Fixed 305 products, the same list as for CVE-2025-68183
Threats
Impact Moderate

A flaw was found in the Linux kernel's Wi-Fi (mac80211) subsystem. The `ieee80211_invoke_fast_rx()` function uses a static variable for `rx_result`, which is shared across concurrent calls. This can lead to incorrect processing of Wi-Fi packets, where a packet might be mishandled or its status incorrectly reported. Such issues can result in unexpected network behavior or a denial of service within the wireless communication.

CWE-1058 - Invokable Control Element in Multi-Thread Context with non-Final Static Storable or Member Element
Affected products
Fixed 305 products, the same list as for CVE-2025-68183
Threats
Impact Important

A flaw was found in the Linux kernel, specifically within the RDMA (Remote Direct Memory Access) vmw_pvrdma module. This vulnerability is a double free, which means the system attempts to release the same memory resource twice. This can occur in an error handling path within the `pvrdma_alloc_ucontext()` function. Exploiting this flaw could lead to memory corruption or cause the system to become unavailable, resulting in a denial of service (DoS).

CWE-763 - Release of Invalid Pointer or Reference
Affected products
Fixed 305 products, the same list as for CVE-2025-68183
Threats
Impact Important

A flaw was found in the Linux kernel's `eventpoll` mechanism. A Use-After-Free (UAF) vulnerability, where the system attempts to access memory after it has been freed, can occur during the removal of a file. A local attacker could exploit this race condition to corrupt memory, potentially leading to privilege escalation or arbitrary code execution. This allows an attacker to gain elevated control over the system.

CWE-825 - Expired Pointer Dereference
Affected products
Fixed 305 products, the same list as for CVE-2025-68183
Threats
Impact Important

A flaw was found in the Linux kernel's Kernel-based Virtual Machine (KVM) for ARM64, specifically within the vgic-its component. This vulnerability occurs when multiple concurrent operations incorrectly drop the translation cache's reference to an entry more than once during cache invalidation. This leads to a use-after-free condition, which can result in memory corruption. The primary impact is potential system instability or a denial of service.

CWE-911 - Improper Update of Reference Count
Affected products
Fixed 305 products, the same list as for CVE-2025-68183
Threats
Impact Important

A flaw was found in the Linux kernel's Kernel-based Virtual Machine (KVM) x86 shadow paging mechanism. This vulnerability occurs when a host page directory entry (PDE) mapping is changed from within the guest, leading to an unexpected role mismatch in shadow paging. This mismatch can cause a use-after-free condition, where the system attempts to access memory that has already been released. Such a condition can lead to system instability, denial of service, potentially the execution of arbitrary code or guest-to-host escape.

CWE-825 - Expired Pointer Dereference
Affected products
Fixed 305 products, the same list as for CVE-2025-68183
Threats
Impact Important
References
URL Category
https://access.redhat.com/errata/RHSA-2026:38902 self
https://access.redhat.com/security/updates/classi… external
https://bugzilla.redhat.com/show_bug.cgi?id=2422699 external
https://bugzilla.redhat.com/show_bug.cgi?id=2455334 external
https://bugzilla.redhat.com/show_bug.cgi?id=2467019 external
https://bugzilla.redhat.com/show_bug.cgi?id=2467215 external
https://bugzilla.redhat.com/show_bug.cgi?id=2481922 external
https://bugzilla.redhat.com/show_bug.cgi?id=2482563 external
https://bugzilla.redhat.com/show_bug.cgi?id=2482588 external
https://bugzilla.redhat.com/show_bug.cgi?id=2482654 external
https://bugzilla.redhat.com/show_bug.cgi?id=2483519 external
https://bugzilla.redhat.com/show_bug.cgi?id=2486982 external
https://bugzilla.redhat.com/show_bug.cgi?id=2497033 external
https://security.access.redhat.com/data/csaf/v2/a… self
https://access.redhat.com/security/cve/CVE-2025-68183 self
https://bugzilla.redhat.com/show_bug.cgi?id=2422699 external
https://www.cve.org/CVERecord?id=CVE-2025-68183 external
https://nvd.nist.gov/vuln/detail/CVE-2025-68183 external
https://lore.kernel.org/linux-cve-announce/202512… external
https://access.redhat.com/security/cve/CVE-2026-31408 self
https://bugzilla.redhat.com/show_bug.cgi?id=2455334 external
https://www.cve.org/CVERecord?id=CVE-2026-31408 external
https://nvd.nist.gov/vuln/detail/CVE-2026-31408 external
https://lore.kernel.org/linux-cve-announce/202604… external
https://access.redhat.com/security/cve/CVE-2026-43074 self
https://bugzilla.redhat.com/show_bug.cgi?id=2467019 external
https://www.cve.org/CVERecord?id=CVE-2026-43074 external
https://nvd.nist.gov/vuln/detail/CVE-2026-43074 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-43279 self
https://bugzilla.redhat.com/show_bug.cgi?id=2467215 external
https://www.cve.org/CVERecord?id=CVE-2026-43279 external
https://nvd.nist.gov/vuln/detail/CVE-2026-43279 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-45984 self
https://bugzilla.redhat.com/show_bug.cgi?id=2481922 external
https://www.cve.org/CVERecord?id=CVE-2026-45984 external
https://nvd.nist.gov/vuln/detail/CVE-2026-45984 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-46113 self
https://bugzilla.redhat.com/show_bug.cgi?id=2482587 external
https://www.cve.org/CVERecord?id=CVE-2026-46113 external
https://nvd.nist.gov/vuln/detail/CVE-2026-46113 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-46135 self
https://bugzilla.redhat.com/show_bug.cgi?id=2482654 external
https://www.cve.org/CVERecord?id=CVE-2026-46135 external
https://nvd.nist.gov/vuln/detail/CVE-2026-46135 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-46152 self
https://bugzilla.redhat.com/show_bug.cgi?id=2482563 external
https://www.cve.org/CVERecord?id=CVE-2026-46152 external
https://nvd.nist.gov/vuln/detail/CVE-2026-46152 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-46189 self
https://bugzilla.redhat.com/show_bug.cgi?id=2482588 external
https://www.cve.org/CVERecord?id=CVE-2026-46189 external
https://nvd.nist.gov/vuln/detail/CVE-2026-46189 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-46242 self
https://bugzilla.redhat.com/show_bug.cgi?id=2483519 external
https://www.cve.org/CVERecord?id=CVE-2026-46242 external
https://nvd.nist.gov/vuln/detail/CVE-2026-46242 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-46316 self
https://bugzilla.redhat.com/show_bug.cgi?id=2486982 external
https://www.cve.org/CVERecord?id=CVE-2026-46316 external
https://nvd.nist.gov/vuln/detail/CVE-2026-46316 external
https://lore.kernel.org/linux-cve-announce/202606… external
https://www.openwall.com/lists/oss-security/2026/… external
https://access.redhat.com/security/cve/CVE-2026-53359 self
https://bugzilla.redhat.com/show_bug.cgi?id=2497033 external
https://www.cve.org/CVERecord?id=CVE-2026-53359 external
https://nvd.nist.gov/vuln/detail/CVE-2026-53359 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://www.openwall.com/lists/oss-security/2026/… external

Loading 1.3 MB of JSON…



Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.

Sightings

Author Source Type Date Other

Nomenclature

  • Seen: The vulnerability was mentioned, discussed, or observed by the user.
  • Confirmed: The vulnerability has been validated from an analyst's perspective.
  • Published Proof of Concept: A public proof of concept is available for this vulnerability.
  • Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
  • Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
  • Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
  • Not confirmed: The user expressed doubt about the validity of the vulnerability.
  • Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.

Loading…

Detection rules are retrieved from Rulezet.

Loading…

Loading…

Loading…