RHSA-2026:63129

Vulnerability from csaf_opensuse - Published: 2026-09-04 02:32 - Updated: 2026-09-23 03:34
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. 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: smc: Fix use-after-free in __pnet_find_base_ndev() (CVE-2025-40064) * kernel: Linux kernel: Denial of Service due to memory leak in tpm2_load_cmd (CVE-2025-71147) * kernel: bonding: alb: fix UAF in rlb_arp_recv during bond up/down (CVE-2026-45970) * kernel: smb/client: fix out-of-bounds read in symlink_data() (CVE-2026-46185) * kernel: Bluetooth: hci_ldisc: Clear HCI_UART_PROTO_INIT on error (CVE-2026-53073) * kernel: pNFS: Fix use-after-free in pnfs_update_layout() (CVE-2026-63800) * kernel: nfsd: fix posix_acl leak on SETACL decode failure (CVE-2026-53397) * kernel: exfat: fix potential use-after-free in exfat_find_dir_entry() (CVE-2026-63808) * kernel: nfsd: release layout stid on setlease failure (CVE-2026-53399) * kernel: NFSv4/flexfiles: reject zero filehandle version count (CVE-2026-53392) * kernel: KEYS: fix overflow in keyctl_pkey_params_get_2() (CVE-2026-63824) * kernel: NFSv4/pNFS: reject zero-length r_addr in nfs4_decode_mp_ds_addr (CVE-2026-53391) * kernel: scsi: target: iscsi: Validate CHAP_R length before base64 decode (CVE-2026-63886) * kernel: ipv4: free net->ipv4.sysctl_local_reserved_ports after unregister_net_sysctl_table() (CVE-2026-64002) * kernel: net: mana: validate rx_req_idx to prevent out-of-bounds array access (CVE-2026-64018) * kernel: scsi: target: iscsi: Bound iscsi_encode_text_output() appends to rsp_buf (CVE-2026-63887) * kernel: smb: client: fix query directory replay double-free (CVE-2026-64387) * kernel: Kernel: Remote out-of-bounds write in RDMA/siw (CVE-2026-64268) * kernel: crypto: qat - fix VF2PF work teardown race in adf_disable_sriov() (CVE-2026-64438) * kernel: crypto: qat - validate RSA CRT component lengths (CVE-2026-64304) * kernel: NFSv4: include MAY_WRITE in open permission mask for O_TRUNC (CVE-2026-64298) * kernel: ALSA: virtio: Validate control metadata from the device (CVE-2026-64490) * kernel: AMD-SN-7061: Safe RET Interrupt Vulnerability (CVE-2026-68480) * kernel: Linux kernel: Arbitrary code execution via userfaultfd shadow stack manipulation (CVE-2026-68166) * kernel: iomap: fix out-of-bounds bitmap_set() with zero-length range (CVE-2026-68145) * kernel: locking/rt: Fix the incorrect RCU protection in rt_spin_unlock() (CVE-2026-72069) * kernel: nvmet-auth: reject short AUTH_RECEIVE buffers (CVE-2026-72130) Bug Fix(es) and Enhancement(s): * [RHEL 9] TPM becomes completely unresponsive and requires a full reboot to clear [rhel-9.8.z] (JIRA:RHEL-213940) * RT scheduler livelock caused by missing backport of 94894c9c477e [rhel-9.8.z] (JIRA:RHEL-240634) 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: smc: Fix use-after-free in __pnet_find_base_ndev(). syzbot reported use-after-free of net_device in __pnet_find_base_ndev(), which was called during connect(). [0] smc_pnet_find_ism_resource() fetches sk_dst_get(sk)->dev and passes down to pnet_find_base_ndev(), where RTNL is held. Then, UAF happened at __pnet_find_base_ndev() when the dev is first used. This means dev had already been freed before acquiring RTNL in pnet_find_base_ndev(). While dev is going away, dst->dev could be swapped with blackhole_netdev, and the dev's refcnt by dst will be released. We must hold dev's refcnt before calling smc_pnet_find_ism_resource(). Also, smc_pnet_find_roce_resource() has the same problem. Let's use __sk_dst_get() and dst_dev_rcu() in the two functions. [0]: BUG: KASAN: use-after-free in __pnet_find_base_ndev+0x1b1/0x1c0 net/smc/smc_pnet.c:926 Read of size 1 at addr ffff888036bac33a by task syz.0.3632/18609 CPU: 1 UID: 0 PID: 18609 Comm: syz.0.3632 Not tainted syzkaller #0 PREEMPT(full) Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 08/18/2025 Call Trace: <TASK> dump_stack_lvl+0x189/0x250 lib/dump_stack.c:120 print_address_description mm/kasan/report.c:378 [inline] print_report+0xca/0x240 mm/kasan/report.c:482 kasan_report+0x118/0x150 mm/kasan/report.c:595 __pnet_find_base_ndev+0x1b1/0x1c0 net/smc/smc_pnet.c:926 pnet_find_base_ndev net/smc/smc_pnet.c:946 [inline] smc_pnet_find_ism_by_pnetid net/smc/smc_pnet.c:1103 [inline] smc_pnet_find_ism_resource+0xef/0x390 net/smc/smc_pnet.c:1154 smc_find_ism_device net/smc/af_smc.c:1030 [inline] smc_find_proposal_devices net/smc/af_smc.c:1115 [inline] __smc_connect+0x372/0x1890 net/smc/af_smc.c:1545 smc_connect+0x877/0xd90 net/smc/af_smc.c:1715 __sys_connect_file net/socket.c:2086 [inline] __sys_connect+0x313/0x440 net/socket.c:2105 __do_sys_connect net/socket.c:2111 [inline] __se_sys_connect net/socket.c:2108 [inline] __x64_sys_connect+0x7a/0x90 net/socket.c:2108 do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline] do_syscall_64+0xfa/0x3b0 arch/x86/entry/syscall_64.c:94 entry_SYSCALL_64_after_hwframe+0x77/0x7f RIP: 0033:0x7f47cbf8eba9 Code: ff ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 c7 c1 a8 ff ff ff f7 d8 64 89 01 48 RSP: 002b:00007f47ccdb1038 EFLAGS: 00000246 ORIG_RAX: 000000000000002a RAX: ffffffffffffffda RBX: 00007f47cc1d5fa0 RCX: 00007f47cbf8eba9 RDX: 0000000000000010 RSI: 0000200000000280 RDI: 000000000000000b RBP: 00007f47cc011e19 R08: 0000000000000000 R09: 0000000000000000 R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000 R13: 00007f47cc1d6038 R14: 00007f47cc1d5fa0 R15: 00007ffc512f8aa8 </TASK> The buggy address belongs to the physical page: page: refcount:0 mapcount:0 mapping:0000000000000000 index:0xffff888036bacd00 pfn:0x36bac flags: 0xfff00000000000(node=0|zone=1|lastcpupid=0x7ff) raw: 00fff00000000000 ffffea0001243d08 ffff8880b863fdc0 0000000000000000 raw: ffff888036bacd00 0000000000000000 00000000ffffffff 0000000000000000 page dumped because: kasan: bad access detected page_owner tracks the page as freed page last allocated via order 2, migratetype Unmovable, gfp_mask 0x446dc0(GFP_KERNEL_ACCOUNT|__GFP_ZERO|__GFP_NOWARN|__GFP_RETRY_MAYFAIL|__GFP_COMP), pid 16741, tgid 16741 (syz-executor), ts 343313197788, free_ts 380670750466 set_page_owner include/linux/page_owner.h:32 [inline] post_alloc_hook+0x240/0x2a0 mm/page_alloc.c:1851 prep_new_page mm/page_alloc.c:1859 [inline] get_page_from_freelist+0x21e4/0x22c0 mm/page_alloc.c:3858 __alloc_frozen_pages_noprof+0x181/0x370 mm/page_alloc.c:5148 alloc_pages_mpol+0x232/0x4a0 mm/mempolicy.c:2416 ___kmalloc_large_node+0x5f/0x1b0 mm/slub.c:4317 __kmalloc_large_node_noprof+0x18/0x90 mm/slub.c:4348 __do_kmalloc_node mm/slub.c:4364 [inline] __kvmalloc_node ---truncated---

CWE-825 - Expired Pointer Dereference
Affected products
Product Identifier Version Remediation
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.44.1.el9_8.noarch
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.44.1.el9_8.src
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.44.1.el9_8.noarch
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.ppc64le
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.s390x
Vendor Fix fix
Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.aarch64
Vendor Fix fix
Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.44.1.el9_8.x86_64
Vendor Fix fix
Threats
Impact Moderate

A flaw was found in the Linux kernel's trusted keys subsystem. A local user could exploit a memory leak in the `tpm2_load_cmd` function, which fails to free a temporary memory allocation in certain error scenarios. This memory leak could lead to a system-wide Denial of Service (DoS) by exhausting available memory resources.

CWE-772 - Missing Release of Resource after Effective Lifetime
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Moderate

A flaw was found in the Linux kernel's bonding driver, specifically within the Active-Backup Load Balancing (ALB) receive path. A local attacker can trigger a Use-After-Free (UAF) vulnerability in the rlb_arp_recv function by rapidly bringing a bond interface up and down while receiving Address Resolution Protocol (ARP) messages. This concurrent access to freed memory can lead to a null pointer dereference, resulting in a system crash and a Denial of Service (DoS).

CWE-364 - Signal Handler Race Condition
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Moderate

A flaw was found in the Linux kernel's Server Message Block (SMB) client. This vulnerability arises from insufficient length validation in the `smb2_check_message()` function when processing symlink error responses. A remote attacker could exploit this by sending a specially crafted symlink error response, which may lead to an out-of-bounds read in the `symlink_data()` function. This could potentially result in information disclosure or a denial of service.

CWE-125 - Out-of-bounds Read
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Moderate

A flaw was found in the Linux kernel's Bluetooth Host Controller Interface (HCI) Universal Asynchronous Receiver/Transmitter (UART) driver. When the `hci_register_dev()` function fails, a flag indicating protocol initialization is not properly cleared. This oversight allows incoming UART data to be processed by the protocol-specific receive handler after its associated resources have been released, potentially leading to a null pointer dereference. This vulnerability could result in a system crash, causing a Denial of Service (DoS).

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

A flaw was found in the Linux kernel's NFSv4/pNFS implementation. The `nfs4_decode_mp_ds_addr` function, responsible for decoding network address information, does not properly handle zero-length `r_addr` opaque data. A malicious or compromised metadata server can exploit this by providing a zero-length `r_addr`, leading to a NULL pointer dereference and causing the client system to panic, resulting in a Denial of Service (DoS).

CWE-476 - NULL Pointer Dereference
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Moderate

A flaw was found in the Linux kernel's NFSv4 (Network File System version 4) flexfiles component. This vulnerability occurs when the ff_layout_alloc_lseg() function processes a malformed flexfiles layout that specifies a zero filehandle version count. An attacker could exploit this by providing a specially crafted flexfiles layout, leading to a null-pointer dereference and ultimately causing a kernel panic, resulting in a Denial of Service (DoS) for the system.

CWE-476 - NULL Pointer Dereference
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Moderate

A flaw was found in the Linux kernel's Network File System Daemon (nfsd). This vulnerability occurs during the processing of Access Control List (ACL) set operations. If a specific decode step fails, a memory leak of a posix_acl object occurs. This can lead to resource exhaustion over time, potentially resulting in a Denial of Service (DoS) for the affected server.

CWE-772 - Missing Release of Resource after Effective Lifetime
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Moderate

A flaw was found in the Linux kernel's Network File System Daemon (nfsd). When a `setlease` operation fails, the system prematurely releases a layout state identifier. An attacker could exploit this by triggering the failure, leading to a use-after-free vulnerability. This could result in a system crash, causing a Denial of Service (DoS).

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

A flaw was found in the Linux kernel's parallel Network File System (pNFS) component. An issue in the `pnfs_update_layout()` function causes a use-after-free vulnerability due to incorrect ordering of memory management operations. This flaw can be triggered when the system attempts to update a pNFS layout, potentially leading to system instability, crashes, or a denial of service. In some scenarios, this type of memory corruption could be exploited by a local attacker to achieve arbitrary code execution.

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

A flaw was found in the Linux kernel's exFAT filesystem driver. A local attacker could exploit a use-after-free vulnerability in the `exfat_find_dir_entry()` function. This occurs because a buffer is prematurely released while still being referenced, which can be triggered by processing a specially crafted exFAT image. Successful exploitation leads to a system crash, resulting in a Denial of Service (DoS).

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

A flaw was found in the Linux kernel's `keyctl_pkey_params_get_2()` function within the KEYS subsystem. The vulnerability arises from an incorrect calculation of the internal output buffer's length, which can lead to a buffer overflow when a user-provided buffer is too small. This flaw could allow a local attacker to corrupt memory, potentially leading to a denial of service or other unspecified impacts.

CWE-787 - Out-of-bounds Write
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important

A flaw was found in the Linux kernel's iSCSI target functionality. This vulnerability allows a remote attacker to cause a buffer overflow by sending a specially crafted Challenge-Handshake Authentication Authentication Protocol (CHAP) response. The system fails to validate the length of the BASE64-encoded CHAP response before decoding it, leading to memory corruption. This could potentially lead to a denial of service or other unpredictable system behavior.

CWE-805 - Buffer Access with Incorrect Length Value
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important

A flaw was found in the Linux kernel's iSCSI (Internet Small Computer System Interface) target functionality. This vulnerability, a heap overrun, occurs because the iscsi_encode_text_output() function does not properly check buffer capacity when processing login requests. A remote attacker could exploit this by sending a specially crafted login request with numerous key-value pairs, leading to a memory corruption issue and potentially a denial of service (DoS) on the system.

CWE-120 - Buffer Copy without Checking Size of Input ('Classic Buffer Overflow')
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important

A flaw was found in the Linux kernel's IPv4 networking component. The `ipv4_sysctl_exit_net()` function prematurely frees the `net->ipv4.sysctl_local_reserved_ports` memory. This can lead to a use-after-free vulnerability, where other threads might attempt to access deallocated memory. Such an issue can result in system instability or a denial of service.

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

A flaw was found in the Linux kernel's mana network driver. In Confidential Virtual Machines (VMs), a missing bounds check when processing network events can allow a malicious hardware component or a compromised VM to write data outside of an intended memory region. This out-of-bounds access could lead to system instability or a denial of service.

CWE-787 - Out-of-bounds Write
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important

A flaw was found in the Linux kernel's Soft iWARP (siw) driver. A remote attacker, by sending specially crafted Read Response segments that exceed the requested length, can trigger an out-of-bounds write. This vulnerability can lead to memory corruption, potentially causing a kernel crash or privilege escalation.

CWE-787 - Out-of-bounds Write
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important

A flaw was found in the Linux kernel's NFSv4 implementation. A local user could exploit a vulnerability where opening a file with O_TRUNC (truncate) and O_RDONLY (read-only) flags would bypass the necessary write permission checks. This oversight allows an attacker to truncate a file without having explicit write access, leading to unauthorized data modification.

CWE-358 - Improperly Implemented Security Check for Standard
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Moderate

A flaw was found in the Linux kernel's QAT (QuickAssist Technology) crypto module. This vulnerability occurs in the RSA key parser when handling CRT (Chinese Remainder Theorem) components. An underflow can happen during a memory copy operation if an RSA CRT component is larger than its allocated buffer, leading to memory corruption. This could potentially allow an attacker to cause system instability or execute arbitrary code.

CWE-787 - Out-of-bounds Write
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important

A flaw was found in the Linux kernel's Server Message Block (SMB) client. This vulnerability, a double-free error, occurs when the client attempts to free the same memory buffer twice during a directory query operation. An attacker could potentially exploit this flaw to cause memory corruption, leading to a denial of service or, in some cases, arbitrary code execution.

CWE-1341 - Multiple Releases of Same Resource or Handle
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important

A flaw was found in the Linux kernel's crypto QAT (QuickAssist Technology) module. A race condition exists during the teardown of Virtual Function to Physical Function (VF2PF) work in the `adf_disable_sriov()` function. This allows a concurrently scheduled or already queued worker to attempt to access memory that has already been freed, leading to a use-after-free vulnerability. This can result in a null-pointer dereference, potentially causing system instability or crashes.

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

A flaw was found in the Linux kernel's ALSA virtio sound driver. A malicious or buggy virtio device can provide invalid control metadata, such as an unknown control type or an oversized value count. The driver's control handling trusts this unvalidated metadata, leading to out-of-bounds access when processing sound control information. This vulnerability could allow a malicious device to cause a denial of service or potentially other impacts on the system.

CWE-787 - Out-of-bounds Write
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important

A flaw was found in the Linux kernel's iomap subsystem. An unsigned subtraction underflow occurs when `ifs_set_range_dirty()` or `ifs_set_range_uptodate()` are called with a zero-length range. This can lead to an out-of-bounds write via `bitmap_set()`, potentially allowing a local attacker to cause memory corruption or a denial of service.

CWE-787 - Out-of-bounds Write
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important

A flaw was found in the Linux kernel's userfaultfd mechanism. A local attacker with userfaultfd access could register on shadow stack Virtual Memory Areas (VMAs). By discarding a page and injecting a page with chosen return addresses, an attacker could achieve arbitrary code execution. This vulnerability arises from the improper handling of special VMAs, including shadow stacks, allowing for manipulation of memory regions.

CWE-94 - Improper Control of Generation of Code ('Code Injection')
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important

An attacker executing code on affected system could inject an interrupt at a precise moment to disrupt "Safe RET", the default Linux mitigation for speculative Return Overflow (SRSO), which could potentially weaken that protection and may result in information disclosure.

CWE-201 - Insertion of Sensitive Information Into Sent Data
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important

A flaw was found in the Linux kernel. The `rt_spin_unlock()` function, and similar real-time (RT) locking mechanisms, incorrectly release Read-Copy-Update (RCU) protection before fully unlocking, leading to a Use-After-Free (UAF) vulnerability. This issue could allow a local attacker to potentially cause a denial of service or achieve privilege escalation.

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

A flaw was found in the `nvmet-auth` component of the Linux kernel. A remote attacker, by sending a specially crafted `AUTH_RECEIVE` buffer to an NVMe-oF (NVM Express over Fabrics) target with in-band authentication enabled, can trigger a heap out-of-bounds write. This vulnerability arises because the system incorrectly processes the provided buffer length, leading to memory corruption. This can result in a denial of service or other unpredictable system behavior.

CWE-787 - Out-of-bounds Write
Affected products
Fixed 303 products, the same list as for CVE-2025-40064
Threats
Impact Important
References
URL Category
https://access.redhat.com/errata/RHSA-2026:63129 self
https://access.redhat.com/security/updates/classi… external
https://bugzilla.redhat.com/show_bug.cgi?id=2406747 external
https://bugzilla.redhat.com/show_bug.cgi?id=2432366 external
https://bugzilla.redhat.com/show_bug.cgi?id=2482006 external
https://bugzilla.redhat.com/show_bug.cgi?id=2482558 external
https://bugzilla.redhat.com/show_bug.cgi?id=2492447 external
https://bugzilla.redhat.com/show_bug.cgi?id=2502219 external
https://bugzilla.redhat.com/show_bug.cgi?id=2502227 external
https://bugzilla.redhat.com/show_bug.cgi?id=2502235 external
https://bugzilla.redhat.com/show_bug.cgi?id=2502239 external
https://bugzilla.redhat.com/show_bug.cgi?id=2502240 external
https://bugzilla.redhat.com/show_bug.cgi?id=2502248 external
https://bugzilla.redhat.com/show_bug.cgi?id=2502260 external
https://bugzilla.redhat.com/show_bug.cgi?id=2502329 external
https://bugzilla.redhat.com/show_bug.cgi?id=2502363 external
https://bugzilla.redhat.com/show_bug.cgi?id=2502421 external
https://bugzilla.redhat.com/show_bug.cgi?id=2502447 external
https://bugzilla.redhat.com/show_bug.cgi?id=2507046 external
https://bugzilla.redhat.com/show_bug.cgi?id=2507089 external
https://bugzilla.redhat.com/show_bug.cgi?id=2507118 external
https://bugzilla.redhat.com/show_bug.cgi?id=2507119 external
https://bugzilla.redhat.com/show_bug.cgi?id=2507208 external
https://bugzilla.redhat.com/show_bug.cgi?id=2507277 external
https://bugzilla.redhat.com/show_bug.cgi?id=2508363 external
https://bugzilla.redhat.com/show_bug.cgi?id=2513167 external
https://bugzilla.redhat.com/show_bug.cgi?id=2513392 external
https://bugzilla.redhat.com/show_bug.cgi?id=2516248 external
https://bugzilla.redhat.com/show_bug.cgi?id=2516448 external
https://security.access.redhat.com/data/csaf/v2/a… self
https://access.redhat.com/security/cve/CVE-2025-40064 self
https://bugzilla.redhat.com/show_bug.cgi?id=2406747 external
https://www.cve.org/CVERecord?id=CVE-2025-40064 external
https://nvd.nist.gov/vuln/detail/CVE-2025-40064 external
https://lore.kernel.org/linux-cve-announce/202510… external
https://access.redhat.com/security/cve/CVE-2025-71147 self
https://bugzilla.redhat.com/show_bug.cgi?id=2432366 external
https://www.cve.org/CVERecord?id=CVE-2025-71147 external
https://nvd.nist.gov/vuln/detail/CVE-2025-71147 external
https://lore.kernel.org/linux-cve-announce/202601… external
https://access.redhat.com/security/cve/CVE-2026-45970 self
https://bugzilla.redhat.com/show_bug.cgi?id=2482006 external
https://www.cve.org/CVERecord?id=CVE-2026-45970 external
https://nvd.nist.gov/vuln/detail/CVE-2026-45970 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-46185 self
https://bugzilla.redhat.com/show_bug.cgi?id=2482558 external
https://www.cve.org/CVERecord?id=CVE-2026-46185 external
https://nvd.nist.gov/vuln/detail/CVE-2026-46185 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-53073 self
https://bugzilla.redhat.com/show_bug.cgi?id=2492447 external
https://www.cve.org/CVERecord?id=CVE-2026-53073 external
https://nvd.nist.gov/vuln/detail/CVE-2026-53073 external
https://lore.kernel.org/linux-cve-announce/202606… external
https://access.redhat.com/security/cve/CVE-2026-53391 self
https://bugzilla.redhat.com/show_bug.cgi?id=2502260 external
https://www.cve.org/CVERecord?id=CVE-2026-53391 external
https://nvd.nist.gov/vuln/detail/CVE-2026-53391 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-53392 self
https://bugzilla.redhat.com/show_bug.cgi?id=2502240 external
https://www.cve.org/CVERecord?id=CVE-2026-53392 external
https://nvd.nist.gov/vuln/detail/CVE-2026-53392 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-53397 self
https://bugzilla.redhat.com/show_bug.cgi?id=2502227 external
https://www.cve.org/CVERecord?id=CVE-2026-53397 external
https://nvd.nist.gov/vuln/detail/CVE-2026-53397 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-53399 self
https://bugzilla.redhat.com/show_bug.cgi?id=2502239 external
https://www.cve.org/CVERecord?id=CVE-2026-53399 external
https://nvd.nist.gov/vuln/detail/CVE-2026-53399 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-63800 self
https://bugzilla.redhat.com/show_bug.cgi?id=2502219 external
https://www.cve.org/CVERecord?id=CVE-2026-63800 external
https://nvd.nist.gov/vuln/detail/CVE-2026-63800 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-63808 self
https://bugzilla.redhat.com/show_bug.cgi?id=2502235 external
https://www.cve.org/CVERecord?id=CVE-2026-63808 external
https://nvd.nist.gov/vuln/detail/CVE-2026-63808 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-63824 self
https://bugzilla.redhat.com/show_bug.cgi?id=2502248 external
https://www.cve.org/CVERecord?id=CVE-2026-63824 external
https://nvd.nist.gov/vuln/detail/CVE-2026-63824 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-63886 self
https://bugzilla.redhat.com/show_bug.cgi?id=2502329 external
https://www.cve.org/CVERecord?id=CVE-2026-63886 external
https://nvd.nist.gov/vuln/detail/CVE-2026-63886 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-63887 self
https://bugzilla.redhat.com/show_bug.cgi?id=2502447 external
https://www.cve.org/CVERecord?id=CVE-2026-63887 external
https://nvd.nist.gov/vuln/detail/CVE-2026-63887 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-64002 self
https://bugzilla.redhat.com/show_bug.cgi?id=2502363 external
https://www.cve.org/CVERecord?id=CVE-2026-64002 external
https://nvd.nist.gov/vuln/detail/CVE-2026-64002 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-64018 self
https://bugzilla.redhat.com/show_bug.cgi?id=2502421 external
https://www.cve.org/CVERecord?id=CVE-2026-64018 external
https://nvd.nist.gov/vuln/detail/CVE-2026-64018 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-64268 self
https://bugzilla.redhat.com/show_bug.cgi?id=2507089 external
https://www.cve.org/CVERecord?id=CVE-2026-64268 external
https://nvd.nist.gov/vuln/detail/CVE-2026-64268 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-64298 self
https://bugzilla.redhat.com/show_bug.cgi?id=2507208 external
https://www.cve.org/CVERecord?id=CVE-2026-64298 external
https://nvd.nist.gov/vuln/detail/CVE-2026-64298 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-64304 self
https://bugzilla.redhat.com/show_bug.cgi?id=2507119 external
https://www.cve.org/CVERecord?id=CVE-2026-64304 external
https://nvd.nist.gov/vuln/detail/CVE-2026-64304 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-64387 self
https://bugzilla.redhat.com/show_bug.cgi?id=2507046 external
https://www.cve.org/CVERecord?id=CVE-2026-64387 external
https://nvd.nist.gov/vuln/detail/CVE-2026-64387 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-64438 self
https://bugzilla.redhat.com/show_bug.cgi?id=2507118 external
https://www.cve.org/CVERecord?id=CVE-2026-64438 external
https://nvd.nist.gov/vuln/detail/CVE-2026-64438 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-64490 self
https://bugzilla.redhat.com/show_bug.cgi?id=2507277 external
https://www.cve.org/CVERecord?id=CVE-2026-64490 external
https://nvd.nist.gov/vuln/detail/CVE-2026-64490 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://access.redhat.com/security/cve/CVE-2026-68145 self
https://bugzilla.redhat.com/show_bug.cgi?id=2513392 external
https://www.cve.org/CVERecord?id=CVE-2026-68145 external
https://nvd.nist.gov/vuln/detail/CVE-2026-68145 external
https://lore.kernel.org/linux-cve-announce/202608… external
https://access.redhat.com/security/cve/CVE-2026-68166 self
https://bugzilla.redhat.com/show_bug.cgi?id=2513167 external
https://www.cve.org/CVERecord?id=CVE-2026-68166 external
https://nvd.nist.gov/vuln/detail/CVE-2026-68166 external
https://git.kernel.org/stable/c/0c26202b157f1efc3… external
https://git.kernel.org/stable/c/165613191ad9d034b… external
https://git.kernel.org/stable/c/3c58f641e813c3c71… external
https://access.redhat.com/security/cve/CVE-2026-68480 self
https://bugzilla.redhat.com/show_bug.cgi?id=2508363 external
https://www.cve.org/CVERecord?id=CVE-2026-68480 external
https://nvd.nist.gov/vuln/detail/CVE-2026-68480 external
https://lore.kernel.org/linux-cve-announce/202608… external
https://access.redhat.com/security/cve/CVE-2026-72069 self
https://bugzilla.redhat.com/show_bug.cgi?id=2516248 external
https://www.cve.org/CVERecord?id=CVE-2026-72069 external
https://nvd.nist.gov/vuln/detail/CVE-2026-72069 external
https://lore.kernel.org/linux-cve-announce/202608… external
https://access.redhat.com/security/cve/CVE-2026-72130 self
https://bugzilla.redhat.com/show_bug.cgi?id=2516448 external
https://www.cve.org/CVERecord?id=CVE-2026-72130 external
https://nvd.nist.gov/vuln/detail/CVE-2026-72130 external
https://lore.kernel.org/linux-cve-announce/202608… external

Loading 2.6 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…

Loading…

Loading…

Related by attack behaviour

Vulnerabilities whose description is nearest to this one in the vector space of the CIRCL/vulnerability-attack-technique-biencoder model. This is a similarity search over the bi-encoder space (plain cosine), not a classification, and it has no measured accuracy.


Loading…