RHSA-2026:25028
Vulnerability from csaf_redhat - Published: 2026-06-10 10:17 - Updated: 2026-07-24 02:41In the Linux kernel, the following vulnerability has been resolved: net: openvswitch: Avoid releasing netdev before teardown completes The patch cited in the Fixes tag below changed the teardown code for OVS ports to no longer unconditionally take the RTNL. After this change, the netdev_destroy() callback can proceed immediately to the call_rcu() invocation if the IFF_OVS_DATAPATH flag is already cleared on the netdev. The ovs_netdev_detach_dev() function clears the flag before completing the unregistration, and if it gets preempted after clearing the flag (as can happen on an -rt kernel), netdev_destroy() can complete and the device can be freed before the unregistration completes. This leads to a splat like: [ 998.393867] Oops: general protection fault, probably for non-canonical address 0xff00000001000239: 0000 [#1] SMP PTI [ 998.393877] CPU: 42 UID: 0 PID: 55177 Comm: ip Kdump: loaded Not tainted 6.12.0-211.1.1.el10_2.x86_64+rt #1 PREEMPT_RT [ 998.393886] Hardware name: Dell Inc. PowerEdge R740/0JMK61, BIOS 2.24.0 03/27/2025 [ 998.393889] RIP: 0010:dev_set_promiscuity+0x8d/0xa0 [ 998.393901] Code: 00 00 75 d8 48 8b 53 08 48 83 ba b0 02 00 00 00 75 ca 48 83 c4 08 5b c3 cc cc cc cc 48 83 bf 48 09 00 00 00 75 91 48 8b 47 08 <48> 83 b8 b0 02 00 00 00 74 97 eb 81 0f 1f 80 00 00 00 00 90 90 90 [ 998.393906] RSP: 0018:ffffce5864a5f6a0 EFLAGS: 00010246 [ 998.393912] RAX: ff00000000ffff89 RBX: ffff894d0adf5a05 RCX: 0000000000000000 [ 998.393917] RDX: 0000000000000000 RSI: 00000000ffffffff RDI: ffff894d0adf5a05 [ 998.393921] RBP: ffff894d19252000 R08: ffff894d19252000 R09: 0000000000000000 [ 998.393924] R10: ffff894d19252000 R11: ffff894d192521b8 R12: 0000000000000006 [ 998.393927] R13: ffffce5864a5f738 R14: 00000000ffffffe2 R15: 0000000000000000 [ 998.393931] FS: 00007fad61971800(0000) GS:ffff894cc0140000(0000) knlGS:0000000000000000 [ 998.393936] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 998.393940] CR2: 000055df0a2a6e40 CR3: 000000011c7fe003 CR4: 00000000007726f0 [ 998.393944] PKRU: 55555554 [ 998.393946] Call Trace: [ 998.393949] <TASK> [ 998.393952] ? show_trace_log_lvl+0x1b0/0x2f0 [ 998.393961] ? show_trace_log_lvl+0x1b0/0x2f0 [ 998.393975] ? dp_device_event+0x41/0x80 [openvswitch] [ 998.394009] ? __die_body.cold+0x8/0x12 [ 998.394016] ? die_addr+0x3c/0x60 [ 998.394027] ? exc_general_protection+0x16d/0x390 [ 998.394042] ? asm_exc_general_protection+0x26/0x30 [ 998.394058] ? dev_set_promiscuity+0x8d/0xa0 [ 998.394066] ? ovs_netdev_detach_dev+0x3a/0x80 [openvswitch] [ 998.394092] dp_device_event+0x41/0x80 [openvswitch] [ 998.394102] notifier_call_chain+0x5a/0xd0 [ 998.394106] unregister_netdevice_many_notify+0x51b/0xa60 [ 998.394110] rtnl_dellink+0x169/0x3e0 [ 998.394121] ? rt_mutex_slowlock.constprop.0+0x95/0xd0 [ 998.394125] rtnetlink_rcv_msg+0x142/0x3f0 [ 998.394128] ? avc_has_perm_noaudit+0x69/0xf0 [ 998.394130] ? __pfx_rtnetlink_rcv_msg+0x10/0x10 [ 998.394132] netlink_rcv_skb+0x50/0x100 [ 998.394138] netlink_unicast+0x292/0x3f0 [ 998.394141] netlink_sendmsg+0x21b/0x470 [ 998.394145] ____sys_sendmsg+0x39d/0x3d0 [ 998.394149] ___sys_sendmsg+0x9a/0xe0 [ 998.394156] __sys_sendmsg+0x7a/0xd0 [ 998.394160] do_syscall_64+0x7f/0x170 [ 998.394162] entry_SYSCALL_64_after_hwframe+0x76/0x7e [ 998.394165] RIP: 0033:0x7fad61bf4724 [ 998.394188] Code: 89 02 b8 ff ff ff ff eb bb 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa 80 3d c5 e9 0c 00 00 74 13 b8 2e 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 54 c3 0f 1f 00 48 83 ec 28 89 54 24 1c 48 89 [ 998.394189] RSP: 002b:00007ffd7e2f7cb8 EFLAGS: 00000202 ORIG_RAX: 000000000000002e [ 998.394191] RAX: ffffffffffffffda RBX: 0000000000000001 RCX: 00007fad61bf4724 [ 998.394193] RDX: 0000000000000000 RSI: 00007ffd7e2f7d20 RDI: 0000000000000003 [ 998.394194] RBP: 00007ffd7e2f7d90 R08: 0000000000000010 R09: 000000000000003f [ 998.394195] R10: 000055df11558010 R11: 0000000000000202 R12: 00007ffd7e2 ---truncated---
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.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.130.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.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.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.130.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.130.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.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.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.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.130.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.130.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.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.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.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.130.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.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.130.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.130.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.130.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.130.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.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.130.1.el9_4.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.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.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.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.130.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.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.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.130.1.el9_4.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.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.130.1.el9_4.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel, specifically within the netfilter: xt_tcpmss module. A remote attacker could exploit this vulnerability by sending a specially crafted TCP packet. The TCP option parser does not properly validate the remaining option length, which results in an out-of-bounds read. This allows an attacker to access memory beyond the intended buffer, potentially leading to information disclosure.
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Moderate"
},
"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 Moderate. 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: net: openvswitch: Avoid releasing netdev before teardown completes (CVE-2026-31508)\n\n* kernel: netfilter: xt_tcpmss: check remaining length before reading optlen (CVE-2026-43190)\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:25028",
"url": "https://access.redhat.com/errata/RHSA-2026:25028"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#moderate",
"url": "https://access.redhat.com/security/updates/classification/#moderate"
},
{
"category": "external",
"summary": "2460641",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460641"
},
{
"category": "external",
"summary": "2467064",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2467064"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_25028.json"
}
],
"title": "Red Hat Security Advisory: kernel security update",
"tracking": {
"current_release_date": "2026-07-24T02:41:47+00:00",
"generator": {
"date": "2026-07-24T02:41:47+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:25028",
"initial_release_date": "2026-06-10T10:17:41+00:00",
"revision_history": [
{
"date": "2026-06-10T10:17:41+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-10T10:17:41+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-24T02:41:47+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.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "perf-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "perf-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "rtla-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "rtla-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "rv-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "rv-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64",
"product_id": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.130.1.el9_4.aarch64",
"product": {
"name": "bpftool-0:7.3.0-427.130.1.el9_4.aarch64",
"product_id": "bpftool-0:7.3.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-64k-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-tools-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-tools-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "kernel-tools-libs-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.130.1.el9_4.aarch64",
"product": {
"name": "python3-perf-0:5.14.0-427.130.1.el9_4.aarch64",
"product_id": "python3-perf-0:5.14.0-427.130.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.130.1.el9_4?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "rtla-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "rtla-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "rv-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "rv-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"product_id": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "bpftool-0:7.3.0-427.130.1.el9_4.ppc64le",
"product_id": "bpftool-0:7.3.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-debug-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-tools-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-tools-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "kernel-tools-libs-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "kernel-tools-libs-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"product": {
"name": "python3-perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_id": "python3-perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.130.1.el9_4?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "perf-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "perf-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "rtla-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "rtla-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "rv-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "rv-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"product_id": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.130.1.el9_4.x86_64",
"product": {
"name": "bpftool-0:7.3.0-427.130.1.el9_4.x86_64",
"product_id": "bpftool-0:7.3.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-debug-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-tools-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-tools-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-tools-libs-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "python3-perf-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "python3-perf-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"product_id": "kernel-rt-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-427.130.1.el9_4?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-debug-devel-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-devel-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-devel-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-devel-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-devel-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "perf-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "perf-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "rtla-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "rtla-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "rv-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "rv-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"product_id": "bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.130.1.el9_4.s390x",
"product": {
"name": "bpftool-0:7.3.0-427.130.1.el9_4.s390x",
"product_id": "bpftool-0:7.3.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-debug-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-debug-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-debug-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-debug-modules-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-modules-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-modules-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-tools-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-tools-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-core-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-modules-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-modules-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.130.1.el9_4.s390x",
"product": {
"name": "python3-perf-0:5.14.0-427.130.1.el9_4.s390x",
"product_id": "python3-perf-0:5.14.0-427.130.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.130.1.el9_4?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-doc-0:5.14.0-427.130.1.el9_4.noarch",
"product": {
"name": "kernel-doc-0:5.14.0-427.130.1.el9_4.noarch",
"product_id": "kernel-doc-0:5.14.0-427.130.1.el9_4.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@5.14.0-427.130.1.el9_4?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:5.14.0-427.130.1.el9_4.noarch",
"product": {
"name": "kernel-abi-stablelists-0:5.14.0-427.130.1.el9_4.noarch",
"product_id": "kernel-abi-stablelists-0:5.14.0-427.130.1.el9_4.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-427.130.1.el9_4?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.130.1.el9_4.src",
"product": {
"name": "kernel-0:5.14.0-427.130.1.el9_4.src",
"product_id": "kernel-0:5.14.0-427.130.1.el9_4.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-devel-matched-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.130.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.130.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.130.1.el9_4.noarch"
},
"product_reference": "kernel-doc-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "perf-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "perf-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "perf-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "perf-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "rtla-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "rtla-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "rtla-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "rtla-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "rv-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "rv-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "rv-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "rv-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "bpftool-0:7.3.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "bpftool-0:7.3.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "bpftool-0:7.3.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "bpftool-0:7.3.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-0:5.14.0-427.130.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.130.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.130.1.el9_4.src"
},
"product_reference": "kernel-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.noarch"
},
"product_reference": "kernel-abi-stablelists-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debug-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-uki-virt-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-tools-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-libs-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-uki-virt-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "python3-perf-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "python3-perf-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "python3-perf-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "python3-perf-0:5.14.0-427.130.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.130.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.130.1.el9_4.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-kvm-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-kvm-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.130.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.130.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.130.1.el9_4.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-31508",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-22T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460641"
}
],
"notes": [
{
"category": "description",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet: openvswitch: Avoid releasing netdev before teardown completes\n\nThe patch cited in the Fixes tag below changed the teardown code for\nOVS ports to no longer unconditionally take the RTNL. After this change,\nthe netdev_destroy() callback can proceed immediately to the call_rcu()\ninvocation if the IFF_OVS_DATAPATH flag is already cleared on the\nnetdev.\n\nThe ovs_netdev_detach_dev() function clears the flag before completing\nthe unregistration, and if it gets preempted after clearing the flag (as\ncan happen on an -rt kernel), netdev_destroy() can complete and the\ndevice can be freed before the unregistration completes. This leads to a\nsplat like:\n\n[ 998.393867] Oops: general protection fault, probably for non-canonical address 0xff00000001000239: 0000 [#1] SMP PTI\n[ 998.393877] CPU: 42 UID: 0 PID: 55177 Comm: ip Kdump: loaded Not tainted 6.12.0-211.1.1.el10_2.x86_64+rt #1 PREEMPT_RT\n[ 998.393886] Hardware name: Dell Inc. PowerEdge R740/0JMK61, BIOS 2.24.0 03/27/2025\n[ 998.393889] RIP: 0010:dev_set_promiscuity+0x8d/0xa0\n[ 998.393901] Code: 00 00 75 d8 48 8b 53 08 48 83 ba b0 02 00 00 00 75 ca 48 83 c4 08 5b c3 cc cc cc cc 48 83 bf 48 09 00 00 00 75 91 48 8b 47 08 \u003c48\u003e 83 b8 b0 02 00 00 00 74 97 eb 81 0f 1f 80 00 00 00 00 90 90 90\n[ 998.393906] RSP: 0018:ffffce5864a5f6a0 EFLAGS: 00010246\n[ 998.393912] RAX: ff00000000ffff89 RBX: ffff894d0adf5a05 RCX: 0000000000000000\n[ 998.393917] RDX: 0000000000000000 RSI: 00000000ffffffff RDI: ffff894d0adf5a05\n[ 998.393921] RBP: ffff894d19252000 R08: ffff894d19252000 R09: 0000000000000000\n[ 998.393924] R10: ffff894d19252000 R11: ffff894d192521b8 R12: 0000000000000006\n[ 998.393927] R13: ffffce5864a5f738 R14: 00000000ffffffe2 R15: 0000000000000000\n[ 998.393931] FS: 00007fad61971800(0000) GS:ffff894cc0140000(0000) knlGS:0000000000000000\n[ 998.393936] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033\n[ 998.393940] CR2: 000055df0a2a6e40 CR3: 000000011c7fe003 CR4: 00000000007726f0\n[ 998.393944] PKRU: 55555554\n[ 998.393946] Call Trace:\n[ 998.393949] \u003cTASK\u003e\n[ 998.393952] ? show_trace_log_lvl+0x1b0/0x2f0\n[ 998.393961] ? show_trace_log_lvl+0x1b0/0x2f0\n[ 998.393975] ? dp_device_event+0x41/0x80 [openvswitch]\n[ 998.394009] ? __die_body.cold+0x8/0x12\n[ 998.394016] ? die_addr+0x3c/0x60\n[ 998.394027] ? exc_general_protection+0x16d/0x390\n[ 998.394042] ? asm_exc_general_protection+0x26/0x30\n[ 998.394058] ? dev_set_promiscuity+0x8d/0xa0\n[ 998.394066] ? ovs_netdev_detach_dev+0x3a/0x80 [openvswitch]\n[ 998.394092] dp_device_event+0x41/0x80 [openvswitch]\n[ 998.394102] notifier_call_chain+0x5a/0xd0\n[ 998.394106] unregister_netdevice_many_notify+0x51b/0xa60\n[ 998.394110] rtnl_dellink+0x169/0x3e0\n[ 998.394121] ? rt_mutex_slowlock.constprop.0+0x95/0xd0\n[ 998.394125] rtnetlink_rcv_msg+0x142/0x3f0\n[ 998.394128] ? avc_has_perm_noaudit+0x69/0xf0\n[ 998.394130] ? __pfx_rtnetlink_rcv_msg+0x10/0x10\n[ 998.394132] netlink_rcv_skb+0x50/0x100\n[ 998.394138] netlink_unicast+0x292/0x3f0\n[ 998.394141] netlink_sendmsg+0x21b/0x470\n[ 998.394145] ____sys_sendmsg+0x39d/0x3d0\n[ 998.394149] ___sys_sendmsg+0x9a/0xe0\n[ 998.394156] __sys_sendmsg+0x7a/0xd0\n[ 998.394160] do_syscall_64+0x7f/0x170\n[ 998.394162] entry_SYSCALL_64_after_hwframe+0x76/0x7e\n[ 998.394165] RIP: 0033:0x7fad61bf4724\n[ 998.394188] Code: 89 02 b8 ff ff ff ff eb bb 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 00 f3 0f 1e fa 80 3d c5 e9 0c 00 00 74 13 b8 2e 00 00 00 0f 05 \u003c48\u003e 3d 00 f0 ff ff 77 54 c3 0f 1f 00 48 83 ec 28 89 54 24 1c 48 89\n[ 998.394189] RSP: 002b:00007ffd7e2f7cb8 EFLAGS: 00000202 ORIG_RAX: 000000000000002e\n[ 998.394191] RAX: ffffffffffffffda RBX: 0000000000000001 RCX: 00007fad61bf4724\n[ 998.394193] RDX: 0000000000000000 RSI: 00007ffd7e2f7d20 RDI: 0000000000000003\n[ 998.394194] RBP: 00007ffd7e2f7d90 R08: 0000000000000010 R09: 000000000000003f\n[ 998.394195] R10: 000055df11558010 R11: 0000000000000202 R12: 00007ffd7e2\n---truncated---",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: net: openvswitch: Avoid releasing netdev before teardown completes",
"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.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.130.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.130.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-31508"
},
{
"category": "external",
"summary": "RHBZ#2460641",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460641"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-31508",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31508"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31508",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31508"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026042207-CVE-2026-31508-4def@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026042207-CVE-2026-31508-4def@gregkh/T"
}
],
"release_date": "2026-04-22T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T10:17:41+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.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.130.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.130.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25028"
}
],
"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.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.130.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.130.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: net: openvswitch: Avoid releasing netdev before teardown completes"
},
{
"cve": "CVE-2026-43190",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-05-06T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2467064"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel, specifically within the netfilter: xt_tcpmss module. A remote attacker could exploit this vulnerability by sending a specially crafted TCP packet. The TCP option parser does not properly validate the remaining option length, which results in an out-of-bounds read. This allows an attacker to access memory beyond the intended buffer, potentially leading to information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: netfilter: xt_tcpmss: check remaining length before reading optlen",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "xt_tcpmss can read one byte past the TCP option boundary when the last option byte is not EOL or NOP. The parser may evaluate op i plus 1 while i is already the final byte of the option area, so a crafted TCP packet can trigger an out of bounds read in the netfilter match path. If the attacker can send packets through a ruleset that uses the tcpmss match, then it can trigger this bug. The issue is network reachable only on systems with an applicable xt_tcpmss or iptables rule, and it is not a generic TCP stack exposure. Impact is primarily limited confidentiality risk from a one byte out of bounds read and possible low availability impact.",
"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.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.130.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.130.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-43190"
},
{
"category": "external",
"summary": "RHBZ#2467064",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2467064"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-43190",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-43190"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43190",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43190"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026050642-CVE-2026-43190-f1c9@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026050642-CVE-2026-43190-f1c9@gregkh/T"
}
],
"release_date": "2026-05-06T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T10:17:41+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.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.130.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.130.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25028"
},
{
"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.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.130.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.130.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.130.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.130.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.130.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.130.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.130.1.el9_4.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: netfilter: xt_tcpmss: check remaining length before reading optlen"
}
]
}
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.
The approach is described in our paper Mapping CVEs to MITRE ATT&CK Techniques: A Curated Gold-Set Classifier and the Limits of LLM-Assisted Label Expansion.
Browse all ATT&CK techniques and the vulnerabilities related to each.
Related by attack behaviour
Vulnerabilities whose description is nearest to this one in the vector space of the CIRCL/vulnerability-attack-technique-biencoder model. This is a similarity search over the bi-encoder space (plain cosine), not a classification, and it has no measured accuracy.