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

RHSA-2026:39083

Vulnerability from csaf_redhat - Published: 2026-07-14 06:09 - Updated: 2026-09-09 01:07
Summary
Red Hat Security Advisory: kernel security update
Severity
Important
Notes
Topic: An update for kernel is now available for Red Hat Enterprise Linux 8. Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.
Details: The kernel packages contain the Linux kernel, the core of any Linux operating system. Security Fix(es): * kernel: net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change (CVE-2025-71066) * kernel: iommu: disable SVA when CONFIG_X86 is set (CVE-2025-71089) * kernel: net: atm: fix crash due to unvalidated vcc pointer in sigd_send() (CVE-2026-31411) * kernel: rtmutex: Use waiter::task instead of current in remove_waiter() (CVE-2026-43499) * kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected GFN (CVE-2026-46113) * kernel: Linux kernel: netfilter: ebtables SNAT target writes to shared memory pages during ARP hardware address rewrite (CVE-2026-53266) * kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock (CVE-2026-53166) * kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected role (CVE-2026-53359) For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
Terms of Use: This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.

In the Linux kernel, the following vulnerability has been resolved: net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change zdi-disclosures@trendmicro.com says: The vulnerability is a race condition between `ets_qdisc_dequeue` and `ets_qdisc_change`. It leads to UAF on `struct Qdisc` object. Attacker requires the capability to create new user and network namespace in order to trigger the bug. See my additional commentary at the end of the analysis. Analysis: static int ets_qdisc_change(struct Qdisc *sch, struct nlattr *opt, struct netlink_ext_ack *extack) { ... // (1) this lock is preventing .change handler (`ets_qdisc_change`) //to race with .dequeue handler (`ets_qdisc_dequeue`) sch_tree_lock(sch); for (i = nbands; i < oldbands; i++) { if (i >= q->nstrict && q->classes[i].qdisc->q.qlen) list_del_init(&q->classes[i].alist); qdisc_purge_queue(q->classes[i].qdisc); } WRITE_ONCE(q->nbands, nbands); for (i = nstrict; i < q->nstrict; i++) { if (q->classes[i].qdisc->q.qlen) { // (2) the class is added to the q->active list_add_tail(&q->classes[i].alist, &q->active); q->classes[i].deficit = quanta[i]; } } WRITE_ONCE(q->nstrict, nstrict); memcpy(q->prio2band, priomap, sizeof(priomap)); for (i = 0; i < q->nbands; i++) WRITE_ONCE(q->classes[i].quantum, quanta[i]); for (i = oldbands; i < q->nbands; i++) { q->classes[i].qdisc = queues[i]; if (q->classes[i].qdisc != &noop_qdisc) qdisc_hash_add(q->classes[i].qdisc, true); } // (3) the qdisc is unlocked, now dequeue can be called in parallel // to the rest of .change handler sch_tree_unlock(sch); ets_offload_change(sch); for (i = q->nbands; i < oldbands; i++) { // (4) we're reducing the refcount for our class's qdisc and // freeing it qdisc_put(q->classes[i].qdisc); // (5) If we call .dequeue between (4) and (5), we will have // a strong UAF and we can control RIP q->classes[i].qdisc = NULL; WRITE_ONCE(q->classes[i].quantum, 0); q->classes[i].deficit = 0; gnet_stats_basic_sync_init(&q->classes[i].bstats); memset(&q->classes[i].qstats, 0, sizeof(q->classes[i].qstats)); } return 0; } Comment: This happens because some of the classes have their qdiscs assigned to NULL, but remain in the active list. This commit fixes this issue by always removing the class from the active list before deleting and freeing its associated qdisc Reproducer Steps (trimmed version of what was sent by zdi-disclosures@trendmicro.com) ``` DEV="${DEV:-lo}" ROOT_HANDLE="${ROOT_HANDLE:-1:}" BAND2_HANDLE="${BAND2_HANDLE:-20:}" # child under 1:2 PING_BYTES="${PING_BYTES:-48}" PING_COUNT="${PING_COUNT:-200000}" PING_DST="${PING_DST:-127.0.0.1}" SLOW_TBF_RATE="${SLOW_TBF_RATE:-8bit}" SLOW_TBF_BURST="${SLOW_TBF_BURST:-100b}" SLOW_TBF_LAT="${SLOW_TBF_LAT:-1s}" cleanup() { tc qdisc del dev "$DEV" root 2>/dev/null } trap cleanup EXIT ip link set "$DEV" up tc qdisc del dev "$DEV" root 2>/dev/null || true tc qdisc add dev "$DEV" root handle "$ROOT_HANDLE" ets bands 2 strict 2 tc qdisc add dev "$DEV" parent 1:2 handle "$BAND2_HANDLE" \ tbf rate "$SLOW_TBF_RATE" burst "$SLOW_TBF_BURST" latency "$SLOW_TBF_LAT" tc filter add dev "$DEV" parent 1: protocol all prio 1 u32 match u32 0 0 flowid 1:2 tc -s qdisc ls dev $DEV ping -I "$DEV" -f -c "$PING_COUNT" -s "$PING_BYTES" -W 0.001 "$PING_DST" \ >/dev/null 2>&1 & tc qdisc change dev "$DEV" root handle "$ROOT_HANDLE" ets bands 2 strict 0 tc qdisc change dev "$DEV" root handle "$ROOT_HANDLE" ets bands 2 strict 2 tc -s qdisc ls dev $DEV tc qdisc del dev "$DEV" parent ---truncated---

CWE-416 - Use After Free
Affected products
Product Identifier Version Remediation
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x
Vendor Fix fix
Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le
Vendor Fix fix
Unresolved product id: CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64
Vendor Fix fix
Threats
Impact Moderate

A security vulnerability was found in the Linux kernel's IOMMU Shared Virtual Addressing (SVA) implementation on x86 architecture. When SVA is enabled, the IOMMU caches kernel page table entries. Since the kernel lacks a mechanism to notify the IOMMU when kernel page table pages are freed and reallocated, the IOMMU can retain stale entries pointing to reused memory. This can lead to use-after-free or write-after-free conditions, potentially enabling arbitrary physical memory DMA access or privilege escalation.

CWE-820 - Missing Synchronization
Affected products
Fixed 120 products, the same list as for CVE-2025-71066
Threats
Impact Moderate

A flaw was found in the Linux kernel's Asynchronous Transfer Mode (ATM) networking component. A local attacker, by acting as a malicious signaling daemon, could send a specially crafted message containing an unvalidated pointer. This unvalidated pointer would be directly used by the kernel, leading to the dereference of an arbitrary memory address. The consequence is a system crash, resulting in a Denial of Service (DoS).

CWE-822 - Untrusted Pointer Dereference
Affected products
Fixed 120 products, the same list as for CVE-2025-71066
Threats
Impact Moderate

A flaw was found in the Linux kernel. When the kernel's real-time mutex (rtmutex) component performs a specific operation called 'proxy-lock rollback' during futex requeue, it incorrectly handles task pointers. This can lead to a 'Use-After-Free' (UAF) vulnerability, where the system attempts to use memory that has already been released. A local attacker could potentially exploit this to gain elevated privileges or execute unauthorized code.

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

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

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

A flaw was found in the Linux kernel's futex (Fast Userspace Mutex) requeue mechanism. When a non-top waiter attempts to requeue a Priority Inheritance (PI) futex it already owns, a NULL pointer dereference can occur. This issue, specifically within the `remove_waiter()` function during a self-deadlock scenario, leads to a kernel crash, resulting in a Denial of Service (DoS).

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

A flaw was found in the Linux kernel's netfilter bridge ebtables SNAT (Source Network Address Translation) module. This vulnerability allows a local attacker on a system configured with specific bridge netfilter rules to improperly modify underlying memory pages during an ARP (Address Resolution Protocol) sender hardware address rewrite. This could lead to unintended system behavior, a denial of service, or potentially local privilege escalation, where an attacker gains higher access rights than intended.

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

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

CWE-825 - Expired Pointer Dereference
Affected products
Fixed 120 products, the same list as for CVE-2025-71066
Threats
Impact Important
References
URL Category
https://access.redhat.com/errata/RHSA-2026:39083 self
https://access.redhat.com/security/updates/classi… external
https://bugzilla.redhat.com/show_bug.cgi?id=2429036 external
https://bugzilla.redhat.com/show_bug.cgi?id=2429104 external
https://bugzilla.redhat.com/show_bug.cgi?id=2456521 external
https://bugzilla.redhat.com/show_bug.cgi?id=2480453 external
https://bugzilla.redhat.com/show_bug.cgi?id=2482587 external
https://bugzilla.redhat.com/show_bug.cgi?id=2485368 external
https://bugzilla.redhat.com/show_bug.cgi?id=2492805 external
https://bugzilla.redhat.com/show_bug.cgi?id=2497033 external
https://security.access.redhat.com/data/csaf/v2/a… self
https://access.redhat.com/security/cve/CVE-2025-71066 self
https://bugzilla.redhat.com/show_bug.cgi?id=2429036 external
https://www.cve.org/CVERecord?id=CVE-2025-71066 external
https://nvd.nist.gov/vuln/detail/CVE-2025-71066 external
https://lore.kernel.org/linux-cve-announce/202601… external
https://access.redhat.com/security/cve/CVE-2025-71089 self
https://bugzilla.redhat.com/show_bug.cgi?id=2429104 external
https://www.cve.org/CVERecord?id=CVE-2025-71089 external
https://nvd.nist.gov/vuln/detail/CVE-2025-71089 external
https://lore.kernel.org/linux-cve-announce/202601… external
https://access.redhat.com/security/cve/CVE-2026-31411 self
https://bugzilla.redhat.com/show_bug.cgi?id=2456521 external
https://www.cve.org/CVERecord?id=CVE-2026-31411 external
https://nvd.nist.gov/vuln/detail/CVE-2026-31411 external
https://lore.kernel.org/linux-cve-announce/202604… external
https://access.redhat.com/security/cve/CVE-2026-43499 self
https://bugzilla.redhat.com/show_bug.cgi?id=2480453 external
https://access.redhat.com/security/vulnerabilitie… external
https://www.cve.org/CVERecord?id=CVE-2026-43499 external
https://nvd.nist.gov/vuln/detail/CVE-2026-43499 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-46113 self
https://bugzilla.redhat.com/show_bug.cgi?id=2482587 external
https://www.cve.org/CVERecord?id=CVE-2026-46113 external
https://nvd.nist.gov/vuln/detail/CVE-2026-46113 external
https://lore.kernel.org/linux-cve-announce/202605… external
https://access.redhat.com/security/cve/CVE-2026-53166 self
https://bugzilla.redhat.com/show_bug.cgi?id=2492805 external
https://www.cve.org/CVERecord?id=CVE-2026-53166 external
https://nvd.nist.gov/vuln/detail/CVE-2026-53166 external
https://lore.kernel.org/linux-cve-announce/202606… external
https://access.redhat.com/security/cve/CVE-2026-53266 self
https://bugzilla.redhat.com/show_bug.cgi?id=2485368 external
https://www.cve.org/CVERecord?id=CVE-2026-53266 external
https://nvd.nist.gov/vuln/detail/CVE-2026-53266 external
https://lore.kernel.org/linux-cve-announce/202606… external
https://access.redhat.com/security/cve/CVE-2026-53359 self
https://bugzilla.redhat.com/show_bug.cgi?id=2497033 external
https://www.cve.org/CVERecord?id=CVE-2026-53359 external
https://nvd.nist.gov/vuln/detail/CVE-2026-53359 external
https://lore.kernel.org/linux-cve-announce/202607… external
https://www.openwall.com/lists/oss-security/2026/… external

{
  "document": {
    "aggregate_severity": {
      "namespace": "https://access.redhat.com/security/updates/classification/",
      "text": "Important"
    },
    "category": "csaf_security_advisory",
    "csaf_version": "2.0",
    "distribution": {
      "text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
      "tlp": {
        "label": "WHITE",
        "url": "https://www.first.org/tlp/"
      }
    },
    "lang": "en",
    "notes": [
      {
        "category": "summary",
        "text": "An update for kernel is now available for Red Hat Enterprise Linux 8.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
        "title": "Topic"
      },
      {
        "category": "general",
        "text": "The kernel packages contain the Linux kernel, the core of any Linux operating system.\n\nSecurity Fix(es):\n\n* kernel: net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change (CVE-2025-71066)\n\n* kernel: iommu: disable SVA when CONFIG_X86 is set (CVE-2025-71089)\n\n* kernel: net: atm: fix crash due to unvalidated vcc pointer in sigd_send() (CVE-2026-31411)\n\n* kernel: rtmutex: Use waiter::task instead of current in remove_waiter() (CVE-2026-43499)\n\n* kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected GFN (CVE-2026-46113)\n\n* kernel: Linux kernel: netfilter: ebtables SNAT target writes to shared memory pages during ARP hardware address rewrite (CVE-2026-53266)\n\n* kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock (CVE-2026-53166)\n\n* kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected role (CVE-2026-53359)\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:39083",
        "url": "https://access.redhat.com/errata/RHSA-2026:39083"
      },
      {
        "category": "external",
        "summary": "https://access.redhat.com/security/updates/classification/#important",
        "url": "https://access.redhat.com/security/updates/classification/#important"
      },
      {
        "category": "external",
        "summary": "2429036",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429036"
      },
      {
        "category": "external",
        "summary": "2429104",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429104"
      },
      {
        "category": "external",
        "summary": "2456521",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456521"
      },
      {
        "category": "external",
        "summary": "2480453",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2480453"
      },
      {
        "category": "external",
        "summary": "2482587",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482587"
      },
      {
        "category": "external",
        "summary": "2485368",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2485368"
      },
      {
        "category": "external",
        "summary": "2492805",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492805"
      },
      {
        "category": "external",
        "summary": "2497033",
        "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2497033"
      },
      {
        "category": "self",
        "summary": "Canonical URL",
        "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_39083.json"
      }
    ],
    "title": "Red Hat Security Advisory: kernel security update",
    "tracking": {
      "current_release_date": "2026-09-09T01:07:03+00:00",
      "generator": {
        "date": "2026-09-09T01:07:03+00:00",
        "engine": {
          "name": "Red Hat SDEngine",
          "version": "5.3.17"
        }
      },
      "id": "RHSA-2026:39083",
      "initial_release_date": "2026-07-14T06:09:06+00:00",
      "revision_history": [
        {
          "date": "2026-07-14T06:09:06+00:00",
          "number": "1",
          "summary": "Initial version"
        },
        {
          "date": "2026-08-04T08:47:07+00:00",
          "number": "2",
          "summary": "Last updated version"
        },
        {
          "date": "2026-09-09T01:07:03+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 BaseOS (v. 8)",
                "product": {
                  "name": "Red Hat Enterprise Linux BaseOS (v. 8)",
                  "product_id": "BaseOS-8.10.0.Z.MAIN.EUS",
                  "product_identification_helper": {
                    "cpe": "cpe:/o:redhat:enterprise_linux:8::baseos"
                  }
                }
              },
              {
                "category": "product_name",
                "name": "Red Hat Enterprise Linux CRB (v. 8)",
                "product": {
                  "name": "Red Hat Enterprise Linux CRB (v. 8)",
                  "product_id": "CRB-8.10.0.Z.MAIN.EUS",
                  "product_identification_helper": {
                    "cpe": "cpe:/a:redhat:enterprise_linux:8::crb"
                  }
                }
              }
            ],
            "category": "product_family",
            "name": "Red Hat Enterprise Linux"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "perf-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "perf-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
                "product": {
                  "name": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_id": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-553.143.1.el8_10?arch=aarch64"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "aarch64"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "perf-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "perf-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
                "product": {
                  "name": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_id": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-553.143.1.el8_10?arch=ppc64le"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "ppc64le"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "perf-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "perf-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
                "product": {
                  "name": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_id": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-553.143.1.el8_10?arch=x86_64"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "x86_64"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "bpftool-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "bpftool-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "bpftool-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-core@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "perf-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "perf-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                "product": {
                  "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_id": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-553.143.1.el8_10?arch=s390x"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "s390x"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "kernel-0:4.18.0-553.143.1.el8_10.src",
                "product": {
                  "name": "kernel-0:4.18.0-553.143.1.el8_10.src",
                  "product_id": "kernel-0:4.18.0-553.143.1.el8_10.src",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel@4.18.0-553.143.1.el8_10?arch=src"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "src"
          },
          {
            "branches": [
              {
                "category": "product_version",
                "name": "kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
                "product": {
                  "name": "kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
                  "product_id": "kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-abi-stablelists@4.18.0-553.143.1.el8_10?arch=noarch"
                  }
                }
              },
              {
                "category": "product_version",
                "name": "kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
                "product": {
                  "name": "kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
                  "product_id": "kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
                  "product_identification_helper": {
                    "purl": "pkg:rpm/redhat/kernel-doc@4.18.0-553.143.1.el8_10?arch=noarch"
                  }
                }
              }
            ],
            "category": "architecture",
            "name": "noarch"
          }
        ],
        "category": "vendor",
        "name": "Red Hat"
      }
    ],
    "relationships": [
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "bpftool-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-553.143.1.el8_10.src as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src"
        },
        "product_reference": "kernel-0:4.18.0-553.143.1.el8_10.src",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch"
        },
        "product_reference": "kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-core-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-doc-0:4.18.0-553.143.1.el8_10.noarch as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch"
        },
        "product_reference": "kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "perf-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "perf-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "perf-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "perf-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)",
          "product_id": "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "BaseOS-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      },
      {
        "category": "default_component_of",
        "full_product_name": {
          "name": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)",
          "product_id": "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        },
        "product_reference": "python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
        "relates_to_product_reference": "CRB-8.10.0.Z.MAIN.EUS"
      }
    ]
  },
  "vulnerabilities": [
    {
      "cve": "CVE-2025-71066",
      "cwe": {
        "id": "CWE-416",
        "name": "Use After Free"
      },
      "discovery_date": "2026-01-13T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2429036"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet/sched: ets: Always remove class from active list before deleting in ets_qdisc_change\n\nzdi-disclosures@trendmicro.com says:\n\nThe vulnerability is a race condition between `ets_qdisc_dequeue` and\n`ets_qdisc_change`.  It leads to UAF on `struct Qdisc` object.\nAttacker requires the capability to create new user and network namespace\nin order to trigger the bug.\nSee my additional commentary at the end of the analysis.\n\nAnalysis:\n\nstatic int ets_qdisc_change(struct Qdisc *sch, struct nlattr *opt,\n                          struct netlink_ext_ack *extack)\n{\n...\n\n      // (1) this lock is preventing .change handler (`ets_qdisc_change`)\n      //to race with .dequeue handler (`ets_qdisc_dequeue`)\n      sch_tree_lock(sch);\n\n      for (i = nbands; i \u003c oldbands; i++) {\n              if (i \u003e= q-\u003enstrict \u0026\u0026 q-\u003eclasses[i].qdisc-\u003eq.qlen)\n                      list_del_init(\u0026q-\u003eclasses[i].alist);\n              qdisc_purge_queue(q-\u003eclasses[i].qdisc);\n      }\n\n      WRITE_ONCE(q-\u003enbands, nbands);\n      for (i = nstrict; i \u003c q-\u003enstrict; i++) {\n              if (q-\u003eclasses[i].qdisc-\u003eq.qlen) {\n\t\t      // (2) the class is added to the q-\u003eactive\n                      list_add_tail(\u0026q-\u003eclasses[i].alist, \u0026q-\u003eactive);\n                      q-\u003eclasses[i].deficit = quanta[i];\n              }\n      }\n      WRITE_ONCE(q-\u003enstrict, nstrict);\n      memcpy(q-\u003eprio2band, priomap, sizeof(priomap));\n\n      for (i = 0; i \u003c q-\u003enbands; i++)\n              WRITE_ONCE(q-\u003eclasses[i].quantum, quanta[i]);\n\n      for (i = oldbands; i \u003c q-\u003enbands; i++) {\n              q-\u003eclasses[i].qdisc = queues[i];\n              if (q-\u003eclasses[i].qdisc != \u0026noop_qdisc)\n                      qdisc_hash_add(q-\u003eclasses[i].qdisc, true);\n      }\n\n      // (3) the qdisc is unlocked, now dequeue can be called in parallel\n      // to the rest of .change handler\n      sch_tree_unlock(sch);\n\n      ets_offload_change(sch);\n      for (i = q-\u003enbands; i \u003c oldbands; i++) {\n\t      // (4) we\u0027re reducing the refcount for our class\u0027s qdisc and\n\t      //  freeing it\n              qdisc_put(q-\u003eclasses[i].qdisc);\n\t      // (5) If we call .dequeue between (4) and (5), we will have\n\t      // a strong UAF and we can control RIP\n              q-\u003eclasses[i].qdisc = NULL;\n              WRITE_ONCE(q-\u003eclasses[i].quantum, 0);\n              q-\u003eclasses[i].deficit = 0;\n              gnet_stats_basic_sync_init(\u0026q-\u003eclasses[i].bstats);\n              memset(\u0026q-\u003eclasses[i].qstats, 0, sizeof(q-\u003eclasses[i].qstats));\n      }\n      return 0;\n}\n\nComment:\nThis happens because some of the classes have their qdiscs assigned to\nNULL, but remain in the active list. This commit fixes this issue by always\nremoving the class from the active list before deleting and freeing its\nassociated qdisc\n\nReproducer Steps\n(trimmed version of what was sent by zdi-disclosures@trendmicro.com)\n\n```\nDEV=\"${DEV:-lo}\"\nROOT_HANDLE=\"${ROOT_HANDLE:-1:}\"\nBAND2_HANDLE=\"${BAND2_HANDLE:-20:}\"   # child under 1:2\nPING_BYTES=\"${PING_BYTES:-48}\"\nPING_COUNT=\"${PING_COUNT:-200000}\"\nPING_DST=\"${PING_DST:-127.0.0.1}\"\n\nSLOW_TBF_RATE=\"${SLOW_TBF_RATE:-8bit}\"\nSLOW_TBF_BURST=\"${SLOW_TBF_BURST:-100b}\"\nSLOW_TBF_LAT=\"${SLOW_TBF_LAT:-1s}\"\n\ncleanup() {\n  tc qdisc del dev \"$DEV\" root 2\u003e/dev/null\n}\ntrap cleanup EXIT\n\nip link set \"$DEV\" up\n\ntc qdisc del dev \"$DEV\" root 2\u003e/dev/null || true\n\ntc qdisc add dev \"$DEV\" root handle \"$ROOT_HANDLE\" ets bands 2 strict 2\n\ntc qdisc add dev \"$DEV\" parent 1:2 handle \"$BAND2_HANDLE\" \\\n  tbf rate \"$SLOW_TBF_RATE\" burst \"$SLOW_TBF_BURST\" latency \"$SLOW_TBF_LAT\"\n\ntc filter add dev \"$DEV\" parent 1: protocol all prio 1 u32 match u32 0 0 flowid 1:2\ntc -s qdisc ls dev $DEV\n\nping -I \"$DEV\" -f -c \"$PING_COUNT\" -s \"$PING_BYTES\" -W 0.001 \"$PING_DST\" \\\n  \u003e/dev/null 2\u003e\u00261 \u0026\ntc qdisc change dev \"$DEV\" root handle \"$ROOT_HANDLE\" ets bands 2 strict 0\ntc qdisc change dev \"$DEV\" root handle \"$ROOT_HANDLE\" ets bands 2 strict 2\ntc -s qdisc ls dev $DEV\ntc qdisc del dev \"$DEV\" parent \n---truncated---",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change",
          "title": "Vulnerability summary"
        },
        {
          "category": "other",
          "text": "A race between ets_qdisc_change() and ets_qdisc_dequeue() can leave an ETS class on the active list while its associated struct Qdisc is being freed, leading to a use-after-free in the dequeue path. The issue is triggered via local traffic-control reconfiguration (tc/netlink) combined with concurrent packet transmission, typically within user/network namespaces.",
          "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": [
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2025-71066"
        },
        {
          "category": "external",
          "summary": "RHBZ#2429036",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429036"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2025-71066",
          "url": "https://www.cve.org/CVERecord?id=CVE-2025-71066"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-71066",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2025-71066"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026011323-CVE-2025-71066-f1fa@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026011323-CVE-2025-71066-f1fa@gregkh/T"
        }
      ],
      "release_date": "2026-01-13T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-14T06:09:06+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.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:39083"
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "HIGH",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 6.2,
            "baseSeverity": "MEDIUM",
            "confidentialityImpact": "LOW",
            "integrityImpact": "LOW",
            "privilegesRequired": "NONE",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: net/sched: ets: Always remove class from active list before deleting in ets_qdisc_change"
    },
    {
      "cve": "CVE-2025-71089",
      "cwe": {
        "id": "CWE-820",
        "name": "Missing Synchronization"
      },
      "discovery_date": "2026-01-13T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2429104"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A security vulnerability was found in the Linux kernel\u0027s IOMMU Shared Virtual Addressing (SVA) implementation on x86 architecture. When SVA is enabled, the IOMMU caches kernel page table entries. Since the kernel lacks a mechanism to notify the IOMMU when kernel page table pages are freed and reallocated, the IOMMU can retain stale entries pointing to reused memory. This can lead to use-after-free or write-after-free conditions, potentially enabling arbitrary physical memory DMA access or privilege escalation.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: iommu: disable SVA when CONFIG_X86 is set",
          "title": "Vulnerability summary"
        },
        {
          "category": "other",
          "text": "This is a significant security vulnerability affecting x86 systems with IOMMU SVA support enabled. While SVA contexts are unprivileged and cannot directly access kernel mappings, the IOMMU still walks and caches intermediate kernel page table entries. An attacker could potentially exploit the stale cache entries to gain arbitrary DMA access or escalate privileges. The fix disables SVA on x86 until proper cache invalidation mechanisms are implemented.",
          "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": [
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2025-71089"
        },
        {
          "category": "external",
          "summary": "RHBZ#2429104",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429104"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2025-71089",
          "url": "https://www.cve.org/CVERecord?id=CVE-2025-71089"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-71089",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2025-71089"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026011341-CVE-2025-71089-a642@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026011341-CVE-2025-71089-a642@gregkh/T"
        }
      ],
      "release_date": "2026-01-13T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-14T06:09:06+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.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:39083"
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 6.6,
            "baseSeverity": "MEDIUM",
            "confidentialityImpact": "LOW",
            "integrityImpact": "LOW",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: iommu: disable SVA when CONFIG_X86 is set"
    },
    {
      "cve": "CVE-2026-31411",
      "cwe": {
        "id": "CWE-822",
        "name": "Untrusted Pointer Dereference"
      },
      "discovery_date": "2026-04-08T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2456521"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s Asynchronous Transfer Mode (ATM) networking component. A local attacker, by acting as a malicious signaling daemon, could send a specially crafted message containing an unvalidated pointer. This unvalidated pointer would be directly used by the kernel, leading to the dereference of an arbitrary memory address. The consequence is a system crash, resulting in a Denial of Service (DoS).",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: net: atm: fix crash due to unvalidated vcc pointer in sigd_send()",
          "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": [
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-31411"
        },
        {
          "category": "external",
          "summary": "RHBZ#2456521",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456521"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-31411",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-31411"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31411",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31411"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026040820-CVE-2026-31411-7ef9@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026040820-CVE-2026-31411-7ef9@gregkh/T"
        }
      ],
      "release_date": "2026-04-08T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-14T06:09:06+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.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:39083"
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.1,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "NONE",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: net: atm: fix crash due to unvalidated vcc pointer in sigd_send()"
    },
    {
      "cve": "CVE-2026-43499",
      "cwe": {
        "id": "CWE-825",
        "name": "Expired Pointer Dereference"
      },
      "discovery_date": "2026-05-21T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2480453"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel. When the kernel\u0027s real-time mutex (rtmutex) component performs a specific operation called \u0027proxy-lock rollback\u0027 during futex requeue, it incorrectly handles task pointers. This can lead to a \u0027Use-After-Free\u0027 (UAF) vulnerability, where the system attempts to use memory that has already been released. A local attacker could potentially exploit this to gain elevated privileges or execute unauthorized code.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: rtmutex: Use waiter::task instead of current in remove_waiter()",
          "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": [
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-43499"
        },
        {
          "category": "external",
          "summary": "RHBZ#2480453",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2480453"
        },
        {
          "category": "external",
          "summary": "RHSB-2026-010",
          "url": "https://access.redhat.com/security/vulnerabilities/RHSB-2026-010"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-43499",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-43499"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43499",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43499"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026052158-CVE-2026-43499-1294@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026052158-CVE-2026-43499-1294@gregkh/T"
        }
      ],
      "release_date": "2026-05-21T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-14T06:09:06+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.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:39083"
        },
        {
          "category": "workaround",
          "details": "See the security bulletin for a detailed mitigation procedure.",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.8,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "HIGH",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Important"
        }
      ],
      "title": "kernel: rtmutex: Use waiter::task instead of current in remove_waiter()"
    },
    {
      "cve": "CVE-2026-46113",
      "cwe": {
        "id": "CWE-416",
        "name": "Use After Free"
      },
      "discovery_date": "2026-05-28T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2482587"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s KVM (Kernel-based Virtual Machine) x86 shadow paging mechanism. This use-after-free vulnerability arises from incorrect handling of Guest Frame Numbers (GFNs) when guest page tables are modified. A local attacker with control over a guest virtual machine could exploit this to dereference freed memory, potentially leading to information disclosure, privilege escalation, or a denial of service (DoS).",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected GFN",
          "title": "Vulnerability summary"
        },
        {
          "category": "other",
          "text": "The attack vector is from the guest to the host if KVM being used (and Shadow paging being used). KVM x86 shadow paging can leave a stale rmap entry when a direct shadow page is reused with an unexpected GFN after guest page table changes between VM entries. Later memslot deletion, dirty logging, or MMU notifier invalidation can walk the stale rmap and dereference a freed kvm_mmu_page, resulting in a use-after-free in the host kernel. For the CVSS the PR:L is used because a local actor with access to KVM or control of a guest execution context can influence the guest mappings and related memory management operations. The issue is not a normal network reachable bug, but it can cross the guest to host boundary in virtualized deployments. Impact is at least host denial of service and in the paranoid score may include confidentiality and integrity impact due to a plausible UAF based memory corruption primitive.\nFor the paranoid score, choose the highest still-defensible interpretation supported by the bug class and patch context, with preference for manual-review sensitivity over autoclosed false negat\nives.",
          "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": [
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-46113"
        },
        {
          "category": "external",
          "summary": "RHBZ#2482587",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482587"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-46113",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-46113"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46113",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46113"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026052813-CVE-2026-46113-f083@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026052813-CVE-2026-46113-f083@gregkh/T"
        }
      ],
      "release_date": "2026-05-28T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-14T06:09:06+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.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:39083"
        },
        {
          "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": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "HIGH",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 5.8,
            "baseSeverity": "MEDIUM",
            "confidentialityImpact": "LOW",
            "integrityImpact": "LOW",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected GFN"
    },
    {
      "cve": "CVE-2026-53166",
      "cwe": {
        "id": "CWE-476",
        "name": "NULL Pointer Dereference"
      },
      "discovery_date": "2026-06-25T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2492805"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s futex (Fast Userspace Mutex) requeue mechanism. When a non-top waiter attempts to requeue a Priority Inheritance (PI) futex it already owns, a NULL pointer dereference can occur. This issue, specifically within the `remove_waiter()` function during a self-deadlock scenario, leads to a kernel crash, resulting in a Denial of Service (DoS).",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock",
          "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": [
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-53166"
        },
        {
          "category": "external",
          "summary": "RHBZ#2492805",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492805"
        },
        {
          "category": "external",
          "summary": "RHSB-2026-010",
          "url": "https://access.redhat.com/security/vulnerabilities/RHSB-2026-010"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-53166",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-53166"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-53166",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-53166"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026062551-CVE-2026-53166-2861@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026062551-CVE-2026-53166-2861@gregkh/T"
        }
      ],
      "release_date": "2026-06-25T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-14T06:09:06+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.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:39083"
        },
        {
          "category": "workaround",
          "details": "See the security bulletin for a detailed mitigation procedure.",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "LOW",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 5.5,
            "baseSeverity": "MEDIUM",
            "confidentialityImpact": "NONE",
            "integrityImpact": "NONE",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Moderate"
        }
      ],
      "title": "kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock"
    },
    {
      "cve": "CVE-2026-53266",
      "cwe": {
        "id": "CWE-825",
        "name": "Expired Pointer Dereference"
      },
      "discovery_date": "2026-06-04T17:29:42.230000+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2485368"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s netfilter bridge ebtables SNAT (Source Network Address Translation) module. This vulnerability allows a local attacker on a system configured with specific bridge netfilter rules to improperly modify underlying memory pages during an ARP (Address Resolution Protocol) sender hardware address rewrite. This could lead to unintended system behavior, a denial of service, or potentially local privilege escalation, where an attacker gains higher access rights than intended.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: Linux kernel: netfilter: ebtables SNAT target writes to shared memory pages during ARP hardware address rewrite",
          "title": "Vulnerability summary"
        },
        {
          "category": "other",
          "text": "An Important flaw in the Linux kernel\u0027s ebtables SNAT target allows a local attacker to achieve privilege escalation, memory corruption, or denial of service. This vulnerability requires specific bridge netfilter rules to be configured, limiting its impact to systems with such specialized network configurations.",
          "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": [
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-53266"
        },
        {
          "category": "external",
          "summary": "RHBZ#2485368",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2485368"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-53266",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-53266"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-53266",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-53266"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026062517-CVE-2026-53266-6162@gregkh/T/#u",
          "url": "https://lore.kernel.org/linux-cve-announce/2026062517-CVE-2026-53266-6162@gregkh/T/#u"
        }
      ],
      "release_date": "2026-06-01T12:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-14T06:09:06+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.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:39083"
        },
        {
          "category": "workaround",
          "details": "Disable ARP hardware address rewriting in ebtables SNAT rules, or remove ebtables SNAT rules that operate on ARP traffic on bridge interfaces.",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "HIGH",
            "attackVector": "NETWORK",
            "availabilityImpact": "HIGH",
            "baseScore": 7.5,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "HIGH",
            "privilegesRequired": "LOW",
            "scope": "UNCHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Important"
        }
      ],
      "title": "kernel: Linux kernel: netfilter: ebtables SNAT target writes to shared memory pages during ARP hardware address rewrite"
    },
    {
      "cve": "CVE-2026-53359",
      "cwe": {
        "id": "CWE-825",
        "name": "Expired Pointer Dereference"
      },
      "discovery_date": "2026-07-04T00:00:00+00:00",
      "ids": [
        {
          "system_name": "Red Hat Bugzilla ID",
          "text": "2497033"
        }
      ],
      "notes": [
        {
          "category": "description",
          "text": "A flaw was found in the Linux kernel\u0027s Kernel-based Virtual Machine (KVM) x86 shadow paging mechanism. This vulnerability occurs when a host page directory entry (PDE) mapping is changed from within the guest, leading to an unexpected role mismatch in shadow paging. This mismatch can cause a use-after-free condition, where the system attempts to access memory that has already been released. Such a condition can lead to system instability, denial of service, potentially the execution of arbitrary code or guest-to-host escape.",
          "title": "Vulnerability description"
        },
        {
          "category": "summary",
          "text": "kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected role",
          "title": "Vulnerability summary"
        },
        {
          "category": "other",
          "text": "This is an Important flaw in the KVM x86 shadow paging mechanism where an attacker with privileged access inside the guest VM could trigger a use-after-free condition by manipulating page directory entries on the host. This could lead to system instability, denial of service, or potentially arbitrary code execution on the host.\n\nIn Red Hat Enterprise Linux 7, nested virtualization for KVM is a Technology Preview feature and the nested parameter defaults to 0 (disabled) for both kvm_intel and kvm_amd.",
          "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": [
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
          "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
          "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
        ]
      },
      "references": [
        {
          "category": "self",
          "summary": "Canonical URL",
          "url": "https://access.redhat.com/security/cve/CVE-2026-53359"
        },
        {
          "category": "external",
          "summary": "RHBZ#2497033",
          "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2497033"
        },
        {
          "category": "external",
          "summary": "https://www.cve.org/CVERecord?id=CVE-2026-53359",
          "url": "https://www.cve.org/CVERecord?id=CVE-2026-53359"
        },
        {
          "category": "external",
          "summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-53359",
          "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-53359"
        },
        {
          "category": "external",
          "summary": "https://lore.kernel.org/linux-cve-announce/2026070403-CVE-2026-53359-4f57@gregkh/T",
          "url": "https://lore.kernel.org/linux-cve-announce/2026070403-CVE-2026-53359-4f57@gregkh/T"
        },
        {
          "category": "external",
          "summary": "https://www.openwall.com/lists/oss-security/2026/07/06/7",
          "url": "https://www.openwall.com/lists/oss-security/2026/07/06/7"
        }
      ],
      "release_date": "2026-07-04T00:00:00+00:00",
      "remediations": [
        {
          "category": "vendor_fix",
          "date": "2026-07-14T06:09:06+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.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ],
          "restart_required": {
            "category": "machine"
          },
          "url": "https://access.redhat.com/errata/RHSA-2026:39083"
        },
        {
          "category": "workaround",
          "details": "This vulnerability can be mitigated by disabling nested virtualization. Create a file in `/etc/modprobe.d/` with a descriptive name, such as `cve-2026-53359-mitigation.conf`. In that file, disable nested virtualization for the `kvm_intel` and `kvm_amd` kernel modules:\n```\noptions kvm-intel nested=0\noptions kvm-amd nested=0\n```\n\nUse `lsmod` to determine if either module is already loaded. If so, remove loaded modules with `modprobe -r`. To validate that nested virtualization is disabled, read the files `/sys/module/kvm_intel/parameters/nested` and `/sys/module/kvm_amd/parameters/nested`. If these modules are loaded, those files should read `N` to indicate that the feature is disabled.\n\nIn OpenShift 4, a MachineConfig can be utilized to create a modprobe configuration allowing control of the module on applicable nodes. See the following article for an example.\n\nhttps://access.redhat.com/solutions/6979679",
          "product_ids": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "scores": [
        {
          "cvss_v3": {
            "attackComplexity": "HIGH",
            "attackVector": "LOCAL",
            "availabilityImpact": "HIGH",
            "baseScore": 7.8,
            "baseSeverity": "HIGH",
            "confidentialityImpact": "HIGH",
            "integrityImpact": "HIGH",
            "privilegesRequired": "LOW",
            "scope": "CHANGED",
            "userInteraction": "NONE",
            "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
            "version": "3.1"
          },
          "products": [
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-abi-stablelists-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-core-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-doc-0:4.18.0-553.143.1.el8_10.noarch",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-modules-extra-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-tools-libs-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-0:4.18.0-553.143.1.el8_10.x86_64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.s390x",
            "BaseOS-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:bpftool-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.aarch64",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.ppc64le",
            "CRB-8.10.0.Z.MAIN.EUS:python3-perf-debuginfo-0:4.18.0-553.143.1.el8_10.x86_64"
          ]
        }
      ],
      "threats": [
        {
          "category": "impact",
          "details": "Important"
        }
      ],
      "title": "kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected role"
    }
  ]
}



Log in or create an account to share your comment.




Tags
Taxonomy of the tags.


Loading…

Loading…

Loading…

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

Sightings

Author Source Type Date Other

Nomenclature

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

Loading…

Detection rules are retrieved from Rulezet.

Loading…

Loading…

Loading…