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

RHSA-2026:36767

Vulnerability from csaf_redhat - Published: 2026-07-08 15:22 - Updated: 2026-09-14 18:26
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.4 Update Services for SAP Solutions. 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: Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout (CVE-2024-27398) * kernel: Bluetooth: SCO: Fix UAF on sco_sock_timeout (CVE-2024-50125) * 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: netfilter: nf_conntrack_helper: pass helper to expect cleanup (CVE-2026-43027) * kernel: ALSA: usb-audio: Add sanity check for OOB writes at silencing (CVE-2026-43279) * kernel: dlm: validate length in dlm_search_rsb_tree (CVE-2026-43125) * 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) Bug Fix(es) and Enhancement(s): * Kernel panic while shutting down ice driver due to use-after-free [rhel-9.4.z] (JIRA:RHEL-177523) * crypto: testmgr - allow authenc(hmac(sha{256,384}),cts(cbc(aes))) in FIPS mode [rhel-9.4.z] (JIRA:RHEL-182538) 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: Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout When the sco connection is established and then, the sco socket is releasing, timeout_work will be scheduled to judge whether the sco disconnection is timeout. The sock will be deallocated later, but it is dereferenced again in sco_sock_timeout. As a result, the use-after-free bugs will happen. The root cause is shown below: Cleanup Thread | Worker Thread sco_sock_release | sco_sock_close | __sco_sock_close | sco_sock_set_timer | schedule_delayed_work | sco_sock_kill | (wait a time) sock_put(sk) //FREE | sco_sock_timeout | sock_hold(sk) //USE The KASAN report triggered by POC is shown below: [ 95.890016] ================================================================== [ 95.890496] BUG: KASAN: slab-use-after-free in sco_sock_timeout+0x5e/0x1c0 [ 95.890755] Write of size 4 at addr ffff88800c388080 by task kworker/0:0/7 ... [ 95.890755] Workqueue: events sco_sock_timeout [ 95.890755] Call Trace: [ 95.890755] <TASK> [ 95.890755] dump_stack_lvl+0x45/0x110 [ 95.890755] print_address_description+0x78/0x390 [ 95.890755] print_report+0x11b/0x250 [ 95.890755] ? __virt_addr_valid+0xbe/0xf0 [ 95.890755] ? sco_sock_timeout+0x5e/0x1c0 [ 95.890755] kasan_report+0x139/0x170 [ 95.890755] ? update_load_avg+0xe5/0x9f0 [ 95.890755] ? sco_sock_timeout+0x5e/0x1c0 [ 95.890755] kasan_check_range+0x2c3/0x2e0 [ 95.890755] sco_sock_timeout+0x5e/0x1c0 [ 95.890755] process_one_work+0x561/0xc50 [ 95.890755] worker_thread+0xab2/0x13c0 [ 95.890755] ? pr_cont_work+0x490/0x490 [ 95.890755] kthread+0x279/0x300 [ 95.890755] ? pr_cont_work+0x490/0x490 [ 95.890755] ? kthread_blkcg+0xa0/0xa0 [ 95.890755] ret_from_fork+0x34/0x60 [ 95.890755] ? kthread_blkcg+0xa0/0xa0 [ 95.890755] ret_from_fork_asm+0x11/0x20 [ 95.890755] </TASK> [ 95.890755] [ 95.890755] Allocated by task 506: [ 95.890755] kasan_save_track+0x3f/0x70 [ 95.890755] __kasan_kmalloc+0x86/0x90 [ 95.890755] __kmalloc+0x17f/0x360 [ 95.890755] sk_prot_alloc+0xe1/0x1a0 [ 95.890755] sk_alloc+0x31/0x4e0 [ 95.890755] bt_sock_alloc+0x2b/0x2a0 [ 95.890755] sco_sock_create+0xad/0x320 [ 95.890755] bt_sock_create+0x145/0x320 [ 95.890755] __sock_create+0x2e1/0x650 [ 95.890755] __sys_socket+0xd0/0x280 [ 95.890755] __x64_sys_socket+0x75/0x80 [ 95.890755] do_syscall_64+0xc4/0x1b0 [ 95.890755] entry_SYSCALL_64_after_hwframe+0x67/0x6f [ 95.890755] [ 95.890755] Freed by task 506: [ 95.890755] kasan_save_track+0x3f/0x70 [ 95.890755] kasan_save_free_info+0x40/0x50 [ 95.890755] poison_slab_object+0x118/0x180 [ 95.890755] __kasan_slab_free+0x12/0x30 [ 95.890755] kfree+0xb2/0x240 [ 95.890755] __sk_destruct+0x317/0x410 [ 95.890755] sco_sock_release+0x232/0x280 [ 95.890755] sock_close+0xb2/0x210 [ 95.890755] __fput+0x37f/0x770 [ 95.890755] task_work_run+0x1ae/0x210 [ 95.890755] get_signal+0xe17/0xf70 [ 95.890755] arch_do_signal_or_restart+0x3f/0x520 [ 95.890755] syscall_exit_to_user_mode+0x55/0x120 [ 95.890755] do_syscall_64+0xd1/0x1b0 [ 95.890755] entry_SYSCALL_64_after_hwframe+0x67/0x6f [ 95.890755] [ 95.890755] The buggy address belongs to the object at ffff88800c388000 [ 95.890755] which belongs to the cache kmalloc-1k of size 1024 [ 95.890755] The buggy address is located 128 bytes inside of [ 95.890755] freed 1024-byte region [ffff88800c388000, ffff88800c388400) [ 95.890755] [ 95.890755] The buggy address belongs to the physical page: [ 95.890755] page: refcount:1 mapcount:0 mapping:0000000000000000 index:0xffff88800c38a800 pfn:0xc388 [ 95.890755] head: order:3 entire_mapcount:0 nr_pages_mapped:0 pincount:0 [ 95.890755] ano ---truncated---

Affected products
Product Identifier Version Remediation
Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x
Vendor Fix fix
Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Unresolved product id: RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64
Vendor Fix fix
Threats
Impact Low

A use-after-free vulnerability was found in the Linux kernel's Bluetooth SCO. When sco_sock_timeout() is called, conn->sk may be unlinked/freed while waiting for sco_conn_lock. This checks if the conn->sk is still valid by checking if it is part of sco_sk_list, leading to a loss of availability and system confidentiality.

CWE-416 - Use After Free
Affected products
Fixed 233 products, the same list as for CVE-2024-27398
Threats
Impact Moderate

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
Fixed 233 products, the same list as for CVE-2024-27398
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 233 products, the same list as for CVE-2024-27398
Threats
Impact Moderate

A flaw was found in the Linux kernel's netfilter subsystem, specifically within the `nf_conntrack_helper`. When a connection tracking helper is unregistered, its associated expectations are not properly cleaned up. This oversight can lead to a use-after-free vulnerability, where the system attempts to access memory that has already been released. A local attacker could exploit this to cause a system crash, resulting in a Denial of Service (DoS), or potentially achieve privilege escalation.

CWE-459 - Incomplete Cleanup
Affected products
Fixed 233 products, the same list as for CVE-2024-27398
Threats
Impact Moderate

A flaw was found in the Linux kernel's Distributed Lock Manager (dlm) module. An attacker could send specially crafted network messages with an oversized length parameter to the dlm_dump_rsb_name() function. This lack of validation can lead to an out-of-bounds write in the dlm_search_rsb_tree() function, potentially causing a buffer overflow. This vulnerability could allow for denial of service or, in some cases, arbitrary code execution.

CWE-130 - Improper Handling of Length Parameter Inconsistency
Affected products
Fixed 233 products, the same list as for CVE-2024-27398
Threats
Impact Important

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 233 products, the same list as for CVE-2024-27398
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 233 products, the same list as for CVE-2024-27398
Threats
Impact Important

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 233 products, the same list as for CVE-2024-27398
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 233 products, the same list as for CVE-2024-27398
Threats
Impact Important
References
URL Category
https://access.redhat.com/errata/RHSA-2026:36767 self
https://access.redhat.com/security/updates/classi… external
https://bugzilla.redhat.com/show_bug.cgi?id=2280464 external
https://bugzilla.redhat.com/show_bug.cgi?id=2323937 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=2464369 external
https://bugzilla.redhat.com/show_bug.cgi?id=2467215 external
https://bugzilla.redhat.com/show_bug.cgi?id=2467234 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://security.access.redhat.com/data/csaf/v2/a… self
https://access.redhat.com/security/cve/CVE-2024-27398 self
https://bugzilla.redhat.com/show_bug.cgi?id=2280464 external
https://www.cve.org/CVERecord?id=CVE-2024-27398 external
https://nvd.nist.gov/vuln/detail/CVE-2024-27398 external
https://lore.kernel.org/linux-cve-announce/202405… external
https://access.redhat.com/security/cve/CVE-2024-50125 self
https://bugzilla.redhat.com/show_bug.cgi?id=2323937 external
https://www.cve.org/CVERecord?id=CVE-2024-50125 external
https://nvd.nist.gov/vuln/detail/CVE-2024-50125 external
https://lore.kernel.org/linux-cve-announce/202411… external
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-43027 self
https://bugzilla.redhat.com/show_bug.cgi?id=2464369 external
https://www.cve.org/CVERecord?id=CVE-2026-43027 external
https://nvd.nist.gov/vuln/detail/CVE-2026-43027 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-43125 self
https://bugzilla.redhat.com/show_bug.cgi?id=2467234 external
https://www.cve.org/CVERecord?id=CVE-2026-43125 external
https://nvd.nist.gov/vuln/detail/CVE-2026-43125 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-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

{
  "document": {
    "aggregate_severity": {
      "namespace": "https://access.redhat.com/security/updates/classification/",
      "text": "Important"
    },
    "category": "csaf_security_advisory",
    "csaf_version": "2.0",
    "distribution": {
      "text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
      "tlp": {
        "label": "WHITE",
        "url": "https://www.first.org/tlp/"
      }
    },
    "lang": "en",
    "notes": [
      {
        "category": "summary",
        "text": "An update for kernel is now available for Red Hat Enterprise Linux 9.4 Update Services for SAP Solutions.\n\nRed 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.",
        "title": "Topic"
      },
      {
        "category": "general",
        "text": "The kernel packages contain the Linux kernel, the core of any Linux operating system.\n\nSecurity Fix(es):\n\n* kernel: Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout (CVE-2024-27398)\n\n* kernel: Bluetooth: SCO: Fix UAF on sco_sock_timeout (CVE-2024-50125)\n\n* kernel: ima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr (CVE-2025-68183)\n\n* kernel: Bluetooth: SCO: Fix use-after-free in sco_recv_frame() due to missing sock_hold (CVE-2026-31408)\n\n* kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup (CVE-2026-43027)\n\n* kernel: ALSA: usb-audio: Add sanity check for OOB writes at silencing (CVE-2026-43279)\n\n* kernel: dlm: validate length in dlm_search_rsb_tree (CVE-2026-43125)\n\n* kernel: gfs2: Fix use-after-free in iomap inline data write path (CVE-2026-45984)\n\n* kernel: wifi: mac80211: drop stray \u0027static\u0027 from fast-RX rx_result (CVE-2026-46152)\n\n* kernel: RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path (CVE-2026-46189)\n\nBug Fix(es) and Enhancement(s):\n\n* Kernel panic while shutting down ice driver due to use-after-free [rhel-9.4.z] (JIRA:RHEL-177523)\n\n* crypto: testmgr - allow authenc(hmac(sha{256,384}),cts(cbc(aes))) in FIPS mode [rhel-9.4.z] (JIRA:RHEL-182538)\n\nFor 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.",
        "title": "Details"
      },
      {
        "category": "legal_disclaimer",
        "text": "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.",
        "title": "Terms of Use"
      }
    ],
    "publisher": {
      "category": "vendor",
      "contact_details": "https://access.redhat.com/security/team/contact/",
      "issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
      "name": "Red Hat Product Security",
      "namespace": "https://www.redhat.com"
    },
    "references": [
      {
        "category": "self",
        "summary": "https://access.redhat.com/errata/RHSA-2026:36767",
        "url": "https://access.redhat.com/errata/RHSA-2026:36767"
      },
      {
        "category": "external",
        "summary": "https://access.redhat.com/security/updates/classification/#important",
        "url": "https://access.redhat.com/security/updates/classification/#important"
      },
      {
        "category": "external",
        "summary": "2280464",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2280464"
      },
      {
        "category": "external",
        "summary": "2323937",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2323937"
      },
      {
        "category": "external",
        "summary": "2422699",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2422699"
      },
      {
        "category": "external",
        "summary": "2455334",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455334"
      },
      {
        "category": "external",
        "summary": "2464369",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2464369"
      },
      {
        "category": "external",
        "summary": "2467215",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2467215"
      },
      {
        "category": "external",
        "summary": "2467234",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2467234"
      },
      {
        "category": "external",
        "summary": "2481922",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481922"
      },
      {
        "category": "external",
        "summary": "2482563",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482563"
      },
      {
        "category": "external",
        "summary": "2482588",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482588"
      },
      {
        "category": "self",
        "summary": "Canonical URL",
        "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_36767.json"
      }
    ],
    "title": "Red Hat Security Advisory: kernel security, bug fix, and enhancement update",
    "tracking": {
      "current_release_date": "2026-09-14T18:26:49+00:00",
      "generator": {
        "date": "2026-09-14T18:26:49+00:00",
        "engine": {
          "name": "Red Hat SDEngine",
          "version": "5.3.21"
        }
      },
      "id": "RHSA-2026:36767",
      "initial_release_date": "2026-07-08T15:22:14+00:00",
      "revision_history": [
        {
          "date": "2026-07-08T15:22:14+00:00",
          "number": "1",
          "summary": "Initial version"
        },
        {
          "date": "2026-07-08T15:22:14+00:00",
          "number": "2",
          "summary": "Last updated version"
        },
        {
          "date": "2026-09-14T18:26:49+00:00",
          "number": "3",
          "summary": "Last generated version"
        }
      ],
      "status": "final",
      "version": "3"
    }
  },
  "product_tree": {
    "branches": [
      {
        "branches": [
          {
            "branches": [
              {
                "category": "product_name",
                "name": "Red Hat Enterprise Linux AppStream E4S (v.9.4)",
                "product": {
                  "name": "Red Hat Enterprise Linux AppStream E4S (v.9.4)",
                  "product_id": "AppStream-9.4.0.Z.E4S",
                  "product_identification_helper": {
                    "cpe": "cpe:/a:redhat:rhel_e4s:9.4::appstream"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
                "product": {
                  "name": "Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
                  "product_id": "BaseOS-9.4.0.Z.E4S",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:redhat:rhel_e4s:9.4::baseos"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "Red Hat Enterprise Linux Real Time E4S (v.9.4)",
                "product": {
                  "name": "Red Hat Enterprise Linux Real Time E4S (v.9.4)",
                  "product_id": "RT-9.4.0.Z.E4S",
                  "product_identification_helper": {
                    "cpe": "cpe:/a:redhat:rhel_e4s:9.4::realtime"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
                "product": {
                  "name": "Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
                  "product_id": "NFV-9.4.0.Z.E4S",
                  "product_identification_helper": {
                    "cpe": "cpe:/a:redhat:rhel_e4s:9.4::nfv"
                  }
                }
              }
            ],
            "category": "product_family",
            "name": "Red Hat Enterprise Linux"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "perf-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "perf-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "rtla-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "rtla-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "rtla-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/rtla@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "rv-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "rv-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "rv-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/rv@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
                  "product_id": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
                  "product_id": "bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@7.3.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
                "product": {
                  "name": "python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_id": "python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.136.1.el9_4?arch=aarch64"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "aarch64"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "perf-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "perf-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/rtla@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "rv-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "rv-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "rv-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/rv@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
                  "product_id": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
                  "product_id": "bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@7.3.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
                "product": {
                  "name": "python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_id": "python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.136.1.el9_4?arch=ppc64le"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "ppc64le"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "perf-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "perf-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "rtla-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "rtla-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "rtla-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/rtla@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "rv-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "rv-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "rv-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/rv@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
                  "product_id": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
                  "product_id": "bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@7.3.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
                "product": {
                  "name": "kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_id": "kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-427.136.1.el9_4?arch=x86_64"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "x86_64"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "perf-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "perf-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "rtla-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "rtla-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "rtla-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/rtla@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "rv-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "rv-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "rv-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/rv@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
                  "product_id": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-0:7.3.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "bpftool-0:7.3.0-427.136.1.el9_4.s390x",
                  "product_id": "bpftool-0:7.3.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@7.3.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
                "product": {
                  "name": "python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_id": "python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.136.1.el9_4?arch=s390x"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "s390x"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
                "product": {
                  "name": "kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
                  "product_id": "kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-doc@5.14.0-427.136.1.el9_4?arch=noarch"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
                "product": {
                  "name": "kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
                  "product_id": "kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-427.136.1.el9_4?arch=noarch"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "noarch"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "kernel-0:5.14.0-427.136.1.el9_4.src",
                "product": {
                  "name": "kernel-0:5.14.0-427.136.1.el9_4.src",
                  "product_id": "kernel-0:5.14.0-427.136.1.el9_4.src",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@5.14.0-427.136.1.el9_4?arch=src"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "src"
          }
        ],
        "category": "vendor",
        "name": "Red Hat"
      }
    ],
    "relationships": [
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-doc-0:5.14.0-427.136.1.el9_4.noarch as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch"
        },
        "product_reference": "kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "perf-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "perf-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "perf-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "perf-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "rtla-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "rtla-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "rtla-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "rtla-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "rtla-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "rtla-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "rtla-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "rv-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "rv-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "rv-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "rv-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "rv-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "rv-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "rv-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
          "product_id": "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "rv-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:7.3.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:7.3.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:7.3.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "bpftool-0:7.3.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:7.3.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:5.14.0-427.136.1.el9_4.src as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src"
        },
        "product_reference": "kernel-0:5.14.0-427.136.1.el9_4.src",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch"
        },
        "product_reference": "kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64"
        },
        "product_reference": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le"
        },
        "product_reference": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x"
        },
        "product_reference": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
          "product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
          "product_id": "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "NFV-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
          "product_id": "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        },
        "product_reference": "python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
        "relates_to_product_reference": "RT-9.4.0.Z.E4S"
      }
    ]
  },
  "vulnerabilities": [
    {
      "cve": "CVE-2024-27398",
      "discovery_date": "2024-05-13T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2280464"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nBluetooth: Fix use-after-free bugs caused by sco_sock_timeout\n\nWhen the sco connection is established and then, the sco socket\nis releasing, timeout_work will be scheduled to judge whether\nthe sco disconnection is timeout. The sock will be deallocated\nlater, but it is dereferenced again in sco_sock_timeout. As a\nresult, the use-after-free bugs will happen. The root cause is\nshown below:\n\n    Cleanup Thread               |      Worker Thread\nsco_sock_release                 |\n  sco_sock_close                 |\n    __sco_sock_close             |\n      sco_sock_set_timer         |\n        schedule_delayed_work    |\n  sco_sock_kill                  |    (wait a time)\n    sock_put(sk) //FREE          |  sco_sock_timeout\n                                 |    sock_hold(sk) //USE\n\nThe KASAN report triggered by POC is shown below:\n\n[   95.890016] ==================================================================\n[   95.890496] BUG: KASAN: slab-use-after-free in sco_sock_timeout+0x5e/0x1c0\n[   95.890755] Write of size 4 at addr ffff88800c388080 by task kworker/0:0/7\n...\n[   95.890755] Workqueue: events sco_sock_timeout\n[   95.890755] Call Trace:\n[   95.890755]  \u003cTASK\u003e\n[   95.890755]  dump_stack_lvl+0x45/0x110\n[   95.890755]  print_address_description+0x78/0x390\n[   95.890755]  print_report+0x11b/0x250\n[   95.890755]  ? __virt_addr_valid+0xbe/0xf0\n[   95.890755]  ? sco_sock_timeout+0x5e/0x1c0\n[   95.890755]  kasan_report+0x139/0x170\n[   95.890755]  ? update_load_avg+0xe5/0x9f0\n[   95.890755]  ? sco_sock_timeout+0x5e/0x1c0\n[   95.890755]  kasan_check_range+0x2c3/0x2e0\n[   95.890755]  sco_sock_timeout+0x5e/0x1c0\n[   95.890755]  process_one_work+0x561/0xc50\n[   95.890755]  worker_thread+0xab2/0x13c0\n[   95.890755]  ? pr_cont_work+0x490/0x490\n[   95.890755]  kthread+0x279/0x300\n[   95.890755]  ? pr_cont_work+0x490/0x490\n[   95.890755]  ? kthread_blkcg+0xa0/0xa0\n[   95.890755]  ret_from_fork+0x34/0x60\n[   95.890755]  ? kthread_blkcg+0xa0/0xa0\n[   95.890755]  ret_from_fork_asm+0x11/0x20\n[   95.890755]  \u003c/TASK\u003e\n[   95.890755]\n[   95.890755] Allocated by task 506:\n[   95.890755]  kasan_save_track+0x3f/0x70\n[   95.890755]  __kasan_kmalloc+0x86/0x90\n[   95.890755]  __kmalloc+0x17f/0x360\n[   95.890755]  sk_prot_alloc+0xe1/0x1a0\n[   95.890755]  sk_alloc+0x31/0x4e0\n[   95.890755]  bt_sock_alloc+0x2b/0x2a0\n[   95.890755]  sco_sock_create+0xad/0x320\n[   95.890755]  bt_sock_create+0x145/0x320\n[   95.890755]  __sock_create+0x2e1/0x650\n[   95.890755]  __sys_socket+0xd0/0x280\n[   95.890755]  __x64_sys_socket+0x75/0x80\n[   95.890755]  do_syscall_64+0xc4/0x1b0\n[   95.890755]  entry_SYSCALL_64_after_hwframe+0x67/0x6f\n[   95.890755]\n[   95.890755] Freed by task 506:\n[   95.890755]  kasan_save_track+0x3f/0x70\n[   95.890755]  kasan_save_free_info+0x40/0x50\n[   95.890755]  poison_slab_object+0x118/0x180\n[   95.890755]  __kasan_slab_free+0x12/0x30\n[   95.890755]  kfree+0xb2/0x240\n[   95.890755]  __sk_destruct+0x317/0x410\n[   95.890755]  sco_sock_release+0x232/0x280\n[   95.890755]  sock_close+0xb2/0x210\n[   95.890755]  __fput+0x37f/0x770\n[   95.890755]  task_work_run+0x1ae/0x210\n[   95.890755]  get_signal+0xe17/0xf70\n[   95.890755]  arch_do_signal_or_restart+0x3f/0x520\n[   95.890755]  syscall_exit_to_user_mode+0x55/0x120\n[   95.890755]  do_syscall_64+0xd1/0x1b0\n[   95.890755]  entry_SYSCALL_64_after_hwframe+0x67/0x6f\n[   95.890755]\n[   95.890755] The buggy address belongs to the object at ffff88800c388000\n[   95.890755]  which belongs to the cache kmalloc-1k of size 1024\n[   95.890755] The buggy address is located 128 bytes inside of\n[   95.890755]  freed 1024-byte region [ffff88800c388000, ffff88800c388400)\n[   95.890755]\n[   95.890755] The buggy address belongs to the physical page:\n[   95.890755] page: refcount:1 mapcount:0 mapping:0000000000000000 index:0xffff88800c38a800 pfn:0xc388\n[   95.890755] head: order:3 entire_mapcount:0 nr_pages_mapped:0 pincount:0\n[   95.890755] ano\n---truncated---",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout",
          "title": "Vulnerability summary"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2024-27398"
        },
        {
          "category": "external",
          "summary": "RHBZ#2280464",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2280464"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2024-27398",
          "url": "https://www.cve.org/CVERecord?id=CVE-2024-27398"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-27398",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-27398"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2024051355-CVE-2024-27398-08ef@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2024051355-CVE-2024-27398-08ef@gregkh/T"
        }
      ],
      "release_date": "2024-05-13T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-08T15:22:14+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:36767"
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 5.5,
            "baseSeverity": "MEDIUM",
            "confidentialityImpact": "NONE",
            "integrityImpact": "NONE",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
            "version": "3.1"
          },
          "products": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Low"
        }
      ],
      "title": "kernel: Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout"
    },
    {
      "cve": "CVE-2024-50125",
      "cwe": {
        "id": "CWE-416",
        "name": "Use After Free"
      },
      "discovery_date": "2024-11-05T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2323937"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A use-after-free vulnerability was found in the Linux kernel\u0027s Bluetooth SCO. When sco_sock_timeout() is called, conn-\u003esk may be unlinked/freed while waiting for sco_conn_lock. This checks if the conn-\u003esk is still valid by checking if it is part of\nsco_sk_list, leading to a loss of availability and system confidentiality.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: Bluetooth: SCO: Fix UAF on sco_sock_timeout",
          "title": "Vulnerability summary"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2024-50125"
        },
        {
          "category": "external",
          "summary": "RHBZ#2323937",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2323937"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2024-50125",
          "url": "https://www.cve.org/CVERecord?id=CVE-2024-50125"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-50125",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-50125"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2024110557-CVE-2024-50125-5fd3@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2024110557-CVE-2024-50125-5fd3@gregkh/T"
        }
      ],
      "release_date": "2024-11-05T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-08T15:22:14+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:36767"
        },
        {
          "category": "workaround",
          "details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.1,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "NONE",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H",
            "version": "3.1"
          },
          "products": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: Bluetooth: SCO: Fix UAF on sco_sock_timeout"
    },
    {
      "cve": "CVE-2025-68183",
      "cwe": {
        "id": "CWE-354",
        "name": "Improper Validation of Integrity Check Value"
      },
      "discovery_date": "2025-12-16T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2422699"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr\n\nCurrently when both IMA and EVM are in fix mode, the IMA signature will\nbe reset to IMA hash if a program first stores IMA signature in\nsecurity.ima and then writes/removes some other security xattr for the\nfile.\n\nFor example, on Fedora, after booting the kernel with \"ima_appraise=fix\nevm=fix ima_policy=appraise_tcb\" and installing rpm-plugin-ima,\ninstalling/reinstalling a package will not make good reference IMA\nsignature generated. Instead IMA hash is generated,\n\n    # getfattr -m - -d -e hex /usr/bin/bash\n    # file: usr/bin/bash\n    security.ima=0x0404...\n\nThis happens because when setting security.selinux, the IMA_DIGSIG flag\nthat had been set early was cleared. As a result, IMA hash is generated\nwhen the file is closed.\n\nSimilarly, IMA signature can be cleared on file close after removing\nsecurity xattr like security.evm or setting/removing ACL.\n\nPrevent replacing the IMA file signature with a file hash, by preventing\nthe IMA_DIGSIG flag from being reset.\n\nHere\u0027s a minimal C reproducer which sets security.selinux as the last\nstep which can also replaced by removing security.evm or setting ACL,\n\n    #include \u003cstdio.h\u003e\n    #include \u003csys/xattr.h\u003e\n    #include \u003cfcntl.h\u003e\n    #include \u003cunistd.h\u003e\n    #include \u003cstring.h\u003e\n    #include \u003cstdlib.h\u003e\n\n    int main() {\n        const char* file_path = \"/usr/sbin/test_binary\";\n        const char* hex_string = \"030204d33204490066306402304\";\n        int length = strlen(hex_string);\n        char* ima_attr_value;\n        int fd;\n\n        fd = open(file_path, O_WRONLY|O_CREAT|O_EXCL, 0644);\n        if (fd == -1) {\n            perror(\"Error opening file\");\n            return 1;\n        }\n\n        ima_attr_value = (char*)malloc(length / 2 );\n        for (int i = 0, j = 0; i \u003c length; i += 2, j++) {\n            sscanf(hex_string + i, \"%2hhx\", \u0026ima_attr_value[j]);\n        }\n\n        if (fsetxattr(fd, \"security.ima\", ima_attr_value, length/2, 0) == -1) {\n            perror(\"Error setting extended attribute\");\n            close(fd);\n            return 1;\n        }\n\n        const char* selinux_value= \"system_u:object_r:bin_t:s0\";\n        if (fsetxattr(fd, \"security.selinux\", selinux_value, strlen(selinux_value), 0) == -1) {\n            perror(\"Error setting extended attribute\");\n            close(fd);\n            return 1;\n        }\n\n        close(fd);\n\n        return 0;\n    }",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: ima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr",
          "title": "Vulnerability summary"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2025-68183"
        },
        {
          "category": "external",
          "summary": "RHBZ#2422699",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2422699"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2025-68183",
          "url": "https://www.cve.org/CVERecord?id=CVE-2025-68183"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68183",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68183"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2025121632-CVE-2025-68183-f588@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2025121632-CVE-2025-68183-f588@gregkh/T"
        }
      ],
      "release_date": "2025-12-16T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-08T15:22:14+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:36767"
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.1,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "NONE",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H",
            "version": "3.1"
          },
          "products": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: ima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr"
    },
    {
      "cve": "CVE-2026-31408",
      "cwe": {
        "id": "CWE-911",
        "name": "Improper Update of Reference Count"
      },
      "discovery_date": "2026-04-06T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2455334"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s 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.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: Bluetooth: SCO: Fix use-after-free in sco_recv_frame() due to missing sock_hold",
          "title": "Vulnerability summary"
        },
        {
          "category": "other",
          "text": "Under `sco_conn_lock`, the code read `conn-\u003esk` then dropped the lock without `sco_sock_hold()`, so `close()` could race and free the socket before `sk-\u003esk_state` use. The fix mirrors other SCO helpers. Adjacent Bluetooth is involved; impact is UAF and likely crash.",
          "title": "Statement"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-31408"
        },
        {
          "category": "external",
          "summary": "RHBZ#2455334",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455334"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-31408",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-31408"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31408",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31408"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026040629-CVE-2026-31408-9f0f@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026040629-CVE-2026-31408-9f0f@gregkh/T"
        }
      ],
      "release_date": "2026-04-06T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-08T15:22:14+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:36767"
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "HIGH",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.0,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "HIGH",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: Bluetooth: SCO: Fix use-after-free in sco_recv_frame() due to missing sock_hold"
    },
    {
      "cve": "CVE-2026-43027",
      "cwe": {
        "id": "CWE-459",
        "name": "Incomplete Cleanup"
      },
      "discovery_date": "2026-05-01T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2464369"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s netfilter subsystem, specifically within the `nf_conntrack_helper`. When a connection tracking helper is unregistered, its associated expectations are not properly cleaned up. This oversight can lead to a use-after-free vulnerability, where the system attempts to access memory that has already been released. A local attacker could exploit this to cause a system crash, resulting in a Denial of Service (DoS), or potentially achieve privilege escalation.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup",
          "title": "Vulnerability summary"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-43027"
        },
        {
          "category": "external",
          "summary": "RHBZ#2464369",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2464369"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-43027",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-43027"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43027",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43027"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026050159-CVE-2026-43027-5711@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026050159-CVE-2026-43027-5711@gregkh/T"
        }
      ],
      "release_date": "2026-05-01T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-08T15:22:14+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:36767"
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.1,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "NONE",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H",
            "version": "3.1"
          },
          "products": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup"
    },
    {
      "cve": "CVE-2026-43125",
      "cwe": {
        "id": "CWE-130",
        "name": "Improper Handling of Length Parameter Inconsistency"
      },
      "discovery_date": "2026-05-06T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2467234"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s Distributed Lock Manager (dlm) module. An attacker could send specially crafted network messages with an oversized length parameter to the dlm_dump_rsb_name() function. This lack of validation can lead to an out-of-bounds write in the dlm_search_rsb_tree() function, potentially causing a buffer overflow. This vulnerability could allow for denial of service or, in some cases, arbitrary code execution.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: dlm: validate length in dlm_search_rsb_tree",
          "title": "Vulnerability summary"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-43125"
        },
        {
          "category": "external",
          "summary": "RHBZ#2467234",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2467234"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-43125",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-43125"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43125",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43125"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026050619-CVE-2026-43125-c9f9@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026050619-CVE-2026-43125-c9f9@gregkh/T"
        }
      ],
      "release_date": "2026-05-06T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-08T15:22:14+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:36767"
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "HIGH",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.0,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "HIGH",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Important"
        }
      ],
      "title": "kernel: dlm: validate length in dlm_search_rsb_tree"
    },
    {
      "cve": "CVE-2026-43279",
      "cwe": {
        "id": "CWE-787",
        "name": "Out-of-bounds Write"
      },
      "discovery_date": "2026-05-06T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2467215"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s 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.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: ALSA: usb-audio: Add sanity check for OOB writes at silencing",
          "title": "Vulnerability summary"
        },
        {
          "category": "other",
          "text": "ALSA USB audio could write past the silent URB transfer buffer when implicit feedback stream sizing was inconsistent, causing a constrained kernel buffer overwrite with likely crash/DoS impact. Exploitation requires a specific USB audio device/configuration.",
          "title": "Statement"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-43279"
        },
        {
          "category": "external",
          "summary": "RHBZ#2467215",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2467215"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-43279",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-43279"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43279",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43279"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026050613-CVE-2026-43279-4530@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026050613-CVE-2026-43279-4530@gregkh/T"
        }
      ],
      "release_date": "2026-05-06T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-08T15:22:14+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:36767"
        },
        {
          "category": "workaround",
          "details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "HIGH",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 5.8,
            "baseSeverity": "MEDIUM",
            "confidentialityImpact": "LOW",
            "integrityImpact": "LOW",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H",
            "version": "3.1"
          },
          "products": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: ALSA: usb-audio: Add sanity check for OOB writes at silencing"
    },
    {
      "cve": "CVE-2026-45984",
      "cwe": {
        "id": "CWE-826",
        "name": "Premature Release of Resource During Expected Lifetime"
      },
      "discovery_date": "2026-05-27T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2481922"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s 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).",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: gfs2: Fix use-after-free in iomap inline data write path",
          "title": "Vulnerability summary"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-45984"
        },
        {
          "category": "external",
          "summary": "RHBZ#2481922",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2481922"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-45984",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-45984"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-45984",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-45984"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026052739-CVE-2026-45984-107d@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026052739-CVE-2026-45984-107d@gregkh/T"
        }
      ],
      "release_date": "2026-05-27T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-08T15:22:14+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:36767"
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.8,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "HIGH",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Important"
        }
      ],
      "title": "kernel: gfs2: Fix use-after-free in iomap inline data write path"
    },
    {
      "cve": "CVE-2026-46152",
      "cwe": {
        "id": "CWE-1058",
        "name": "Invokable Control Element in Multi-Thread Context with non-Final Static Storable or Member Element"
      },
      "discovery_date": "2026-05-28T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2482563"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s 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.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: wifi: mac80211: drop stray \u0027static\u0027 from fast-RX rx_result",
          "title": "Vulnerability summary"
        },
        {
          "category": "other",
          "text": "This is an Important flaw in the Linux kernel\u0027s `mac80211` Wi-Fi subsystem, affecting Red Hat Enterprise Linux and Red Hat In-Vehicle OS. The vulnerability arises from a shared static variable in concurrent fast-RX operations, which can lead to incorrect Wi-Fi packet processing. This may result in unexpected network behavior or a denial of service, impacting the reliability of wireless communication.",
          "title": "Statement"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-46152"
        },
        {
          "category": "external",
          "summary": "RHBZ#2482563",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482563"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-46152",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-46152"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46152",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46152"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026052822-CVE-2026-46152-ec8a@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026052822-CVE-2026-46152-ec8a@gregkh/T"
        }
      ],
      "release_date": "2026-05-28T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-08T15:22:14+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:36767"
        },
        {
          "category": "workaround",
          "details": "To mitigate this issue, disable the Wi-Fi interface if wireless networking is not required. This can be achieved by preventing the `mac80211` kernel module from loading. To blacklist the `mac80211` module: `echo \"blacklist mac80211\" | sudo tee /etc/modprobe.d/blacklist-mac80211.conf`. After modifying the blacklist, regenerate the initramfs and reboot the system for the changes to take effect: `sudo dracut -f -v` and `sudo reboot`. Disabling the `mac80211` module will prevent Wi-Fi functionality on the system.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "HIGH",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.0,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "HIGH",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Important"
        }
      ],
      "title": "kernel: wifi: mac80211: drop stray \u0027static\u0027 from fast-RX rx_result"
    },
    {
      "cve": "CVE-2026-46189",
      "cwe": {
        "id": "CWE-763",
        "name": "Release of Invalid Pointer or Reference"
      },
      "discovery_date": "2026-05-28T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2482588"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "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).",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path",
          "title": "Vulnerability summary"
        },
        {
          "category": "general",
          "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
          "title": "CVSS score applicability"
        }
      ],
      "product_status": {
        "fixed": [
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
          "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
          "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
          "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
          "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-46189"
        },
        {
          "category": "external",
          "summary": "RHBZ#2482588",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482588"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-46189",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-46189"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46189",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46189"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026052831-CVE-2026-46189-c188@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026052831-CVE-2026-46189-c188@gregkh/T"
        }
      ],
      "release_date": "2026-05-28T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-08T15:22:14+00:00",
          "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:36767"
        },
        {
          "category": "workaround",
          "details": "To mitigate this issue, prevent the `vmw_pvrdma` kernel module from loading. Create a file named `/etc/modprobe.d/disable-vmw_pvrdma.conf` with the following content: `install vmw_pvrdma /bin/true`. A system reboot is required for this change to take effect. Disabling this module may impact functionality if VMware paravirtual RDMA devices are actively used.",
          "product_ids": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "HIGH",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.0,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "HIGH",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.136.1.el9_4.noarch",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.136.1.el9_4.x86_64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.aarch64",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.ppc64le",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.s390x",
            "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.src",
            "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.136.1.el9_4.noarch",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.136.1.el9_4.x86_64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.aarch64",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.ppc64le",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.s390x",
            "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64",
            "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.136.1.el9_4.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Important"
        }
      ],
      "title": "kernel: RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path"
    }
  ]
}



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…