Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-53166 (GCVE-0-2026-53166)
Vulnerability from cvelistv5 – Published: 2026-06-25 08:38 – Updated: 2026-07-10 11:57This CVE ID has been rejected or withdrawn by its CVE Numbering Authority.
Show details on NVD website{
"containers": {
"cna": {
"providerMetadata": {
"dateUpdated": "2026-07-10T11:57:35.720Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"rejectedReasons": [
{
"lang": "en",
"value": "This CVE ID has been rejected or withdrawn by its CVE Numbering Authority."
}
],
"x_generator": {
"engine": "cvelib 1.8.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2026-53166",
"datePublished": "2026-06-25T08:38:46.089Z",
"dateRejected": "2026-07-10T11:57:35.720Z",
"dateReserved": "2026-06-09T07:44:35.389Z",
"dateUpdated": "2026-07-10T11:57:35.720Z",
"state": "REJECTED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-53166",
"date": "2026-07-10",
"epss": "0.00126",
"percentile": "0.02673"
},
"microsoft_vex": {
"current_release_date": "2026-06-28T01:43:09.000Z",
"cve": "CVE-2026-53166",
"id": "msrc_CVE-2026-53166",
"initial_release_date": "2026-06-02T00:00:00.000Z",
"product_status:known_affected": "2",
"source": "Microsoft CSAF VEX",
"status": "final",
"title": "futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock",
"url": "https://msrc.microsoft.com/csaf/vex/2026/msrc_cve-2026-53166.json",
"version": "2"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-53166\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-06-25T09:16:33.983\",\"lastModified\":\"2026-07-10T12:17:10.343\",\"vulnStatus\":\"Rejected\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Rejected reason: This CVE ID has been rejected or withdrawn by its CVE Numbering Authority.\"}],\"metrics\":{},\"references\":[]}}",
"redhat_vex": {
"aggregate_severity": "Moderate",
"current_release_date": "2026-07-17T16:13:21+00:00",
"cve": "CVE-2026-53166",
"id": "CVE-2026-53166",
"initial_release_date": "2026-06-25T00:00:00+00:00",
"product_status:fixed": "2132",
"product_status:known_affected": "22",
"product_status:known_not_affected": "14",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-53166.json",
"version": "3"
},
"suse_vex": {
"aggregate_severity": "moderate",
"current_release_date": "2026-07-15T05:04:30Z",
"cve": "CVE-2026-53166",
"id": "CVE-2026-53166",
"initial_release_date": "2026-06-26T02:11:29Z",
"product_status:recommended": "103",
"source": "SUSE CSAF VEX",
"status": "interim",
"title": "SUSE CVE CVE-2026-53166",
"url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2026-53166.json",
"version": "5"
}
}
}
RHSA-2026:39082
Vulnerability from csaf_redhat - Published: 2026-07-14 05:39 - Updated: 2026-07-23 09:04In 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---
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
|
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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"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": "Please update",
"title": "Topic"
},
{
"category": "general",
"text": "Please update",
"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:39082",
"url": "https://access.redhat.com/errata/RHSA-2026:39082"
},
{
"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_39082.json"
}
],
"title": "Red Hat Security Advisory: kernel-rt update",
"tracking": {
"current_release_date": "2026-07-23T09:04:31+00:00",
"generator": {
"date": "2026-07-23T09:04:31+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:39082",
"initial_release_date": "2026-07-14T05:39:50+00:00",
"revision_history": [
{
"date": "2026-07-14T05:39:50+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-07-14T05:39:50+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-23T09:04:31+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 NFV (v. 8)",
"product": {
"name": "Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:8::nfv"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux RT (v. 8)",
"product": {
"name": "Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:8::realtime"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"product": {
"name": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"product_id": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@4.18.0-553.143.1.rt7.484.el8_10?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-kvm@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product": {
"name": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_id": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo-common-x86_64@4.18.0-553.143.1.rt7.484.el8_10?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src"
},
"product_reference": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux NFV (v. 8)",
"product_id": "NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "NFV-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src"
},
"product_reference": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-8.10.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64 as a component of Red Hat Enterprise Linux RT (v. 8)",
"product_id": "RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"relates_to_product_reference": "RT-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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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-14T05:39:50+00:00",
"details": "Please update",
"product_ids": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39082"
}
],
"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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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-14T05:39:50+00:00",
"details": "Please update",
"product_ids": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39082"
}
],
"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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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-14T05:39:50+00:00",
"details": "Please update",
"product_ids": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39082"
}
],
"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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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-14T05:39:50+00:00",
"details": "Please update",
"product_ids": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39082"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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-14T05:39:50+00:00",
"details": "Please update",
"product_ids": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39082"
},
{
"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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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-14T05:39:50+00:00",
"details": "Please update",
"product_ids": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39082"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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-14T05:39:50+00:00",
"details": "Please update",
"product_ids": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39082"
},
{
"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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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-14T05:39:50+00:00",
"details": "Please update",
"product_ids": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39082"
},
{
"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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.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": [
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-kvm-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"NFV-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.src",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-core-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-debuginfo-common-x86_64-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-devel-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64",
"RT-8.10.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:4.18.0-553.143.1.rt7.484.el8_10.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected role"
}
]
}
RHSA-2026:39083
Vulnerability from csaf_redhat - Published: 2026-07-14 06:09 - Updated: 2026-07-23 09:04In 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---
| 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
|
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.
| 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
|
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).
| 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
|
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.
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
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).
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
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).
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
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.
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
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.
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:bpftool-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:kernel-0:4.18.0-553.143.1.el8_10.src | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.10.0.Z.MAIN.EUS:perf-0:4.18.0-553.143.1.el8_10.s390x | — |
Vendor Fix
fix
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
|
| 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
Workaround
|
{
"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": "Please update",
"title": "Topic"
},
{
"category": "general",
"text": "Please update",
"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 update",
"tracking": {
"current_release_date": "2026-07-23T09:04:27+00:00",
"generator": {
"date": "2026-07-23T09:04:27+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"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-07-14T06:09:06+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-23T09:04:27+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": "Please update",
"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": "Please update",
"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.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": "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": "Please update",
"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": "Please update",
"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": "Please update",
"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": "Please update",
"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": "Please update",
"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": "Please update",
"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"
}
]
}
RHSA-2026:39983
Vulnerability from csaf_redhat - Published: 2026-07-15 13:48 - Updated: 2026-07-23 09:03A flaw was found in the Linux kernel's netfilter subsystem, specifically within the `nf_conntrack_helper`. When a connection tracking helper is unregistered, its associated expectations are not properly cleaned up. This oversight can lead to a use-after-free vulnerability, where the system attempts to access memory that has already been released. A local attacker could exploit this to cause a system crash, resulting in a Denial of Service (DoS), or potentially achieve privilege escalation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
|
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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Moderate"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for kernel-rt is now available for Red Hat Enterprise Linux 9.2 Update Services for SAP Solutions.\n\nRed Hat Product Security has rated this update as having a security impact of Moderate. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "The kernel-rt packages provide the Real Time Linux Kernel, which enables fine-tuning for systems with extremely high determinism requirements.\n\nSecurity Fix(es):\n\n* kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup (CVE-2026-43027)\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: 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:39983",
"url": "https://access.redhat.com/errata/RHSA-2026:39983"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#moderate",
"url": "https://access.redhat.com/security/updates/classification/#moderate"
},
{
"category": "external",
"summary": "2464369",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2464369"
},
{
"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": "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_39983.json"
}
],
"title": "Red Hat Security Advisory: kernel-rt security update",
"tracking": {
"current_release_date": "2026-07-23T09:03:37+00:00",
"generator": {
"date": "2026-07-23T09:03:37+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:39983",
"initial_release_date": "2026-07-15T13:48:13+00:00",
"revision_history": [
{
"date": "2026-07-15T13:48:13+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-07-15T13:48:13+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-23T09:03:37+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 Real Time E4S (v.9.2)",
"product": {
"name": "Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_e4s:9.2::realtime"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product": {
"name": "Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_e4s:9.2::nfv"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"product": {
"name": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"product_id": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-284.181.1.rt14.466.el9_2?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo-common-x86_64@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product": {
"name": "kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_id": "kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-284.181.1.rt14.466.el9_2?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src"
},
"product_reference": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.2)",
"product_id": "NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "NFV-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src"
},
"product_reference": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.2)",
"product_id": "RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"relates_to_product_reference": "RT-9.2.0.Z.E4S"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-43027",
"cwe": {
"id": "CWE-459",
"name": "Incomplete Cleanup"
},
"discovery_date": "2026-05-01T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2464369"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s netfilter subsystem, specifically within the `nf_conntrack_helper`. When a connection tracking helper is unregistered, its associated expectations are not properly cleaned up. This oversight can lead to a use-after-free vulnerability, where the system attempts to access memory that has already been released. A local attacker could exploit this to cause a system crash, resulting in a Denial of Service (DoS), or potentially achieve privilege escalation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-43027"
},
{
"category": "external",
"summary": "RHBZ#2464369",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2464369"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-43027",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-43027"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43027",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43027"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026050159-CVE-2026-43027-5711@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026050159-CVE-2026-43027-5711@gregkh/T"
}
],
"release_date": "2026-05-01T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-15T13:48:13+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39983"
}
],
"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": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup"
},
{
"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": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.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-15T13:48:13+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39983"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.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": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.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": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.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-15T13:48:13+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39983"
},
{
"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": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.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": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.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": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.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-15T13:48:13+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39983"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.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": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock"
},
{
"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": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.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-15T13:48:13+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39983"
},
{
"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": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.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": [
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"NFV-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-kvm-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"NFV-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.src",
"RT-9.2.0.Z.E4S:kernel-rt-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-devel-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64",
"RT-9.2.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-284.181.1.rt14.466.el9_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected role"
}
]
}
RHSA-2026:39984
Vulnerability from csaf_redhat - Published: 2026-07-15 13:47 - Updated: 2026-07-27 22:28A 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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the XFS filesystem. A race condition in the copy-on-write mechanism for reflinked files can cause writes to bypass the copy-on-write process and modify shared data blocks directly. As a result, data intended for a private copy may be written to the original shared location, corrupting the contents of other files that reference those blocks. A local attacker with read access to a file on an XFS filesystem with reflink enabled could exploit this flaw to corrupt files they do not have write access to, allowing content to be added to the target file. If properly exploited this vulnerability may lead to privilege escalations or arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"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.4 Advanced Mission Critical Update Support and Red Hat Enterprise Linux 8.4 Extended Update Support Long-Life Add-On.\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: rtmutex: Use waiter::task instead of current in remove_waiter() (CVE-2026-43499)\n\n* kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock (CVE-2026-53166)\n\n* kernel: XFS data corruption using reflink ()\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:39984",
"url": "https://access.redhat.com/errata/RHSA-2026:39984"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2480453",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2480453"
},
{
"category": "external",
"summary": "2492805",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492805"
},
{
"category": "external",
"summary": "2498915",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2498915"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_39984.json"
}
],
"title": "Red Hat Security Advisory: kernel security update",
"tracking": {
"current_release_date": "2026-07-27T22:28:28+00:00",
"generator": {
"date": "2026-07-27T22:28:28+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:39984",
"initial_release_date": "2026-07-15T13:47:23+00:00",
"revision_history": [
{
"date": "2026-07-15T13:47:23+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-07-15T13:47:23+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-27T22:28:28+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 AUS (v.8.4)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_aus:8.4::baseos"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_eus_long_life:8.4::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "perf-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "perf-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_id": "python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-305.198.1.el8_4?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:4.18.0-305.198.1.el8_4.src",
"product": {
"name": "kernel-0:4.18.0-305.198.1.el8_4.src",
"product_id": "kernel-0:4.18.0-305.198.1.el8_4.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@4.18.0-305.198.1.el8_4?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"product": {
"name": "kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"product_id": "kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@4.18.0-305.198.1.el8_4?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"product": {
"name": "kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"product_id": "kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@4.18.0-305.198.1.el8_4?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-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-305.198.1.el8_4.src as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src"
},
"product_reference": "kernel-0:4.18.0-305.198.1.el8_4.src",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch"
},
"product_reference": "kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:4.18.0-305.198.1.el8_4.noarch as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch"
},
"product_reference": "kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "perf-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-305.198.1.el8_4.src as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src"
},
"product_reference": "kernel-0:4.18.0-305.198.1.el8_4.src",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch"
},
"product_reference": "kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:4.18.0-305.198.1.el8_4.noarch as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch"
},
"product_reference": "kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "perf-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
}
]
},
"vulnerabilities": [
{
"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.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.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-15T13:47:23+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39984"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"BaseOS-8.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.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.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: rtmutex: Use waiter::task instead of current in remove_waiter()"
},
{
"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.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.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-15T13:47:23+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39984"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"BaseOS-8.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.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.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock"
},
{
"cve": "CVE-2026-64600",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"discovery_date": "2026-07-10T06:29:23.730000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2498915"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the XFS filesystem. A race condition in the copy-on-write mechanism for reflinked files can cause writes to bypass the copy-on-write process and modify shared data blocks directly. As a result, data intended for a private copy may be written to the original shared location, corrupting the contents of other files that reference those blocks. A local attacker with read access to a file on an XFS filesystem with reflink enabled could exploit this flaw to corrupt files they do not have write access to, allowing content to be added to the target file. If properly exploited this vulnerability may lead to privilege escalations or arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: XFS data corruption using reflink",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw affects XFS filesystems that have the reflink feature enabled (reflink=1), which is the default configuration for XFS filesystems created on Red Hat Enterprise Linux 8 and later. The issue is a race condition where internal file mapping information becomes stale during a lock cycle but is not refreshed before being used to determine whether data blocks are shared between files. Exploitation requires local access and read permission to the target file. Systems using XFS without reflink enabled, or using other filesystems such as ext4, are not affected. Red Hat Enterprise Linux 7 and earlier are not affected, as the reflink feature is not available on those versions.",
"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.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-64600"
},
{
"category": "external",
"summary": "RHBZ#2498915",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2498915"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-64600",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-64600"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-64600",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-64600"
},
{
"category": "external",
"summary": "https://cdn2.qualys.com/advisory/2026/07/22/RefluXFS.txt",
"url": "https://cdn2.qualys.com/advisory/2026/07/22/RefluXFS.txt"
}
],
"release_date": "2026-07-14T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-15T13:47:23+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:39984"
},
{
"category": "workaround",
"details": "This vulnerability can be mitigated using a SystemTap script. To create and apply the mitigation, follow the steps below:\n\n1. Install and configure SystemTap\n\nInstall the SystemTap package and its dependencies following the instructions at:\nhttps://docs.redhat.com/en/documentation/red_hat_enterprise_linux/10/html/monitoring_and_managing_system_status_and_performance/getting-started-with-systemtap\n\n2. Create the mitigation script\n\nCreate a file named `refluxfs_mitigation.stp` with the following contents:\n\n~~~\nprobe begin {\n printf(\"refluxfs mitigation loaded\\n\")\n}\n\nprobe module(\"xfs\").function(\"xfs_file_remap_range\").call {\n $remap_flags = 0xffff\n}\n\nprobe module(\"xfs\").function(\"xfs_file_remap_range\").return {\n $return = -95\n}\n\nprobe end {\n printf(\"refluxfs mitigation unloaded\\n\")\n}\n~~~\n\n3. Load the mitigation\n\nAs the `root` user, execute SystemTap in guru mode:\n\n~~~\nstap -g refluxfs_mitigation.stp\n~~~\n\nOnce the script is compiled and loaded, the following message will appear:\n\n~~~\nrefluxfs mitigation loaded\n~~~\n\nWith the mitigation active, any application attempting to use reflink to copy files will receive `-EOPNOTSUPP` (`-95`) when calling the `FICLONE` ioctl (or its variants) or the `copy_file_range()` syscall.\n\nImportant considerations:\n\n1. SystemTap scripts are compiled into kernel modules. On systems with Secure Boot enabled, the kernel is in lockdown mode and will only load modules signed with a valid Secure Boot key or a key enrolled in the MOK. SystemTap can sign the generated module at compile time, but the user is responsible for key management. For instructions, refer to the \"Sign a SystemTap module\" section of:\nhttps://www.redhat.com/en/blog/secure-boot-systemtap\n\n2. The SystemTap module is not persistent across reboots. If the machine is restarted or the `stap` process is terminated, the module will be unloaded and the mitigation must be reapplied.\n\n3. Programs that rely on CoW/reflink without a fallback mechanism may fail, as reflink operations will be unavailable on any XFS filesystem while the mitigation is loaded. This includes the `cp` command when run with `--reflink=always`. In that case, use `--reflink=auto` instead, which is the default behavior in Red Hat Enterprise Linux.",
"product_ids": [
"BaseOS-8.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.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.4.0.Z.AUS:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.AUS:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.AUS:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-305.198.1.el8_4.noarch",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-305.198.1.el8_4.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-305.198.1.el8_4.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: XFS data corruption using reflink"
}
]
}
RHSA-2026:40068
Vulnerability from csaf_redhat - Published: 2026-07-15 15:58 - Updated: 2026-07-24 02:42In the Linux kernel, the following vulnerability has been resolved: ima: don't clear IMA_DIGSIG flag when setting or removing non-IMA xattr Currently when both IMA and EVM are in fix mode, the IMA signature will be reset to IMA hash if a program first stores IMA signature in security.ima and then writes/removes some other security xattr for the file. For example, on Fedora, after booting the kernel with "ima_appraise=fix evm=fix ima_policy=appraise_tcb" and installing rpm-plugin-ima, installing/reinstalling a package will not make good reference IMA signature generated. Instead IMA hash is generated, # getfattr -m - -d -e hex /usr/bin/bash # file: usr/bin/bash security.ima=0x0404... This happens because when setting security.selinux, the IMA_DIGSIG flag that had been set early was cleared. As a result, IMA hash is generated when the file is closed. Similarly, IMA signature can be cleared on file close after removing security xattr like security.evm or setting/removing ACL. Prevent replacing the IMA file signature with a file hash, by preventing the IMA_DIGSIG flag from being reset. Here's a minimal C reproducer which sets security.selinux as the last step which can also replaced by removing security.evm or setting ACL, #include <stdio.h> #include <sys/xattr.h> #include <fcntl.h> #include <unistd.h> #include <string.h> #include <stdlib.h> int main() { const char* file_path = "/usr/sbin/test_binary"; const char* hex_string = "030204d33204490066306402304"; int length = strlen(hex_string); char* ima_attr_value; int fd; fd = open(file_path, O_WRONLY|O_CREAT|O_EXCL, 0644); if (fd == -1) { perror("Error opening file"); return 1; } ima_attr_value = (char*)malloc(length / 2 ); for (int i = 0, j = 0; i < length; i += 2, j++) { sscanf(hex_string + i, "%2hhx", &ima_attr_value[j]); } if (fsetxattr(fd, "security.ima", ima_attr_value, length/2, 0) == -1) { perror("Error setting extended attribute"); close(fd); return 1; } const char* selinux_value= "system_u:object_r:bin_t:s0"; if (fsetxattr(fd, "security.selinux", selinux_value, strlen(selinux_value), 0) == -1) { perror("Error setting extended attribute"); close(fd); return 1; } close(fd); return 0; }
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's Server Message Block (SMB) client. A remote, untrusted server could send a specially crafted symlink error response, leading to an out-of-bounds read vulnerability. This could result in the disclosure of sensitive information from the kernel's memory to a local user through the readlink(2) system call.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's network scheduler component. A remote attacker could send specially crafted network packets containing nested Virtual Local Area Network (VLAN) headers. This could cause the kernel to read beyond allocated memory, leading to a system crash and a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's netfilter subsystem, specifically within the `nf_conntrack_helper`. When a connection tracking helper is unregistered, its associated expectations are not properly cleaned up. This oversight can lead to a use-after-free vulnerability, where the system attempts to access memory that has already been released. A local attacker could exploit this to cause a system crash, resulting in a Denial of Service (DoS), or potentially achieve privilege escalation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Linux kernel's NVMe over TCP (nvmet-tcp) implementation. A race condition exists between the handling of an Initialization Connection Request (ICReq) and the teardown of a queue. A remote attacker, by sending an ICReq and immediately closing the connection, could trigger a double free vulnerability. This could lead to a denial of service (DoS) due to memory corruption.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel, specifically within the RDMA (Remote Direct Memory Access) vmw_pvrdma module. This vulnerability is a double free, which means the system attempts to release the same memory resource twice. This can occur in an error handling path within the `pvrdma_alloc_ucontext()` function. Exploiting this flaw could lead to memory corruption or cause the system to become unavailable, resulting in a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's Direct Rendering Manager (DRM) Graphics Execution Manager (GEM) component. This vulnerability arises from an inconsistent calculation of plane dimensions, which can lead to incorrect memory allocation checks. A local attacker could exploit this by creating a specially crafted Graphics Execution Manager (GEM) object that bypasses security validations. This could allow the GPU to access memory outside its designated area, potentially leading to memory corruption, information disclosure, or the execution of unauthorized code.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"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.6 Advanced Mission Critical Update Support and Red Hat Enterprise Linux 8.6 Extended Update Support Long-Life Add-On.\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: ima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr (CVE-2025-68183)\n\n* kernel: smb: client: fix OOB reads parsing symlink error response (CVE-2026-31613)\n\n* kernel: net: sched: act_csum: validate nested VLAN headers (CVE-2026-31684)\n\n* kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup (CVE-2026-43027)\n\n* kernel: rtmutex: Use waiter::task instead of current in remove_waiter() (CVE-2026-43499)\n\n* kernel: RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path (CVE-2026-46189)\n\n* kernel: drm/gem: Fix inconsistent plane dimension calculation in drm_gem_fb_init_with_funcs() (CVE-2026-46209)\n\n* kernel: nvmet-tcp: fix race between ICReq handling and queue teardown (CVE-2026-46135)\n\n* kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock (CVE-2026-53166)\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:40068",
"url": "https://access.redhat.com/errata/RHSA-2026:40068"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2422699",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2422699"
},
{
"category": "external",
"summary": "2461480",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461480"
},
{
"category": "external",
"summary": "2461757",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461757"
},
{
"category": "external",
"summary": "2464369",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2464369"
},
{
"category": "external",
"summary": "2480453",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2480453"
},
{
"category": "external",
"summary": "2482588",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482588"
},
{
"category": "external",
"summary": "2482636",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482636"
},
{
"category": "external",
"summary": "2482654",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482654"
},
{
"category": "external",
"summary": "2492805",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492805"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_40068.json"
}
],
"title": "Red Hat Security Advisory: kernel security update",
"tracking": {
"current_release_date": "2026-07-24T02:42:20+00:00",
"generator": {
"date": "2026-07-24T02:42:20+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:40068",
"initial_release_date": "2026-07-15T15:58:53+00:00",
"revision_history": [
{
"date": "2026-07-15T15:58:53+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-07-15T15:58:53+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-24T02:42:20+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 AUS (v.8.6)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_aus:8.6::baseos"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_eus_long_life:8.6::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "perf-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "perf-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_id": "python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.201.1.el8_6?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:4.18.0-372.201.1.el8_6.src",
"product": {
"name": "kernel-0:4.18.0-372.201.1.el8_6.src",
"product_id": "kernel-0:4.18.0-372.201.1.el8_6.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@4.18.0-372.201.1.el8_6?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"product": {
"name": "kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"product_id": "kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@4.18.0-372.201.1.el8_6?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"product": {
"name": "kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"product_id": "kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@4.18.0-372.201.1.el8_6?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-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-372.201.1.el8_6.src as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src"
},
"product_reference": "kernel-0:4.18.0-372.201.1.el8_6.src",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch"
},
"product_reference": "kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:4.18.0-372.201.1.el8_6.noarch as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch"
},
"product_reference": "kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "perf-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-372.201.1.el8_6.src as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src"
},
"product_reference": "kernel-0:4.18.0-372.201.1.el8_6.src",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch"
},
"product_reference": "kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:4.18.0-372.201.1.el8_6.noarch as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch"
},
"product_reference": "kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "perf-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.6)",
"product_id": "BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"relates_to_product_reference": "BaseOS-8.6.0.Z.EUS.EXTENSION"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-68183",
"cwe": {
"id": "CWE-354",
"name": "Improper Validation of Integrity Check Value"
},
"discovery_date": "2025-12-16T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2422699"
}
],
"notes": [
{
"category": "description",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\nima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr\n\nCurrently when both IMA and EVM are in fix mode, the IMA signature will\nbe reset to IMA hash if a program first stores IMA signature in\nsecurity.ima and then writes/removes some other security xattr for the\nfile.\n\nFor example, on Fedora, after booting the kernel with \"ima_appraise=fix\nevm=fix ima_policy=appraise_tcb\" and installing rpm-plugin-ima,\ninstalling/reinstalling a package will not make good reference IMA\nsignature generated. Instead IMA hash is generated,\n\n # getfattr -m - -d -e hex /usr/bin/bash\n # file: usr/bin/bash\n security.ima=0x0404...\n\nThis happens because when setting security.selinux, the IMA_DIGSIG flag\nthat had been set early was cleared. As a result, IMA hash is generated\nwhen the file is closed.\n\nSimilarly, IMA signature can be cleared on file close after removing\nsecurity xattr like security.evm or setting/removing ACL.\n\nPrevent replacing the IMA file signature with a file hash, by preventing\nthe IMA_DIGSIG flag from being reset.\n\nHere\u0027s a minimal C reproducer which sets security.selinux as the last\nstep which can also replaced by removing security.evm or setting ACL,\n\n #include \u003cstdio.h\u003e\n #include \u003csys/xattr.h\u003e\n #include \u003cfcntl.h\u003e\n #include \u003cunistd.h\u003e\n #include \u003cstring.h\u003e\n #include \u003cstdlib.h\u003e\n\n int main() {\n const char* file_path = \"/usr/sbin/test_binary\";\n const char* hex_string = \"030204d33204490066306402304\";\n int length = strlen(hex_string);\n char* ima_attr_value;\n int fd;\n\n fd = open(file_path, O_WRONLY|O_CREAT|O_EXCL, 0644);\n if (fd == -1) {\n perror(\"Error opening file\");\n return 1;\n }\n\n ima_attr_value = (char*)malloc(length / 2 );\n for (int i = 0, j = 0; i \u003c length; i += 2, j++) {\n sscanf(hex_string + i, \"%2hhx\", \u0026ima_attr_value[j]);\n }\n\n if (fsetxattr(fd, \"security.ima\", ima_attr_value, length/2, 0) == -1) {\n perror(\"Error setting extended attribute\");\n close(fd);\n return 1;\n }\n\n const char* selinux_value= \"system_u:object_r:bin_t:s0\";\n if (fsetxattr(fd, \"security.selinux\", selinux_value, strlen(selinux_value), 0) == -1) {\n perror(\"Error setting extended attribute\");\n close(fd);\n return 1;\n }\n\n close(fd);\n\n return 0;\n }",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: ima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68183"
},
{
"category": "external",
"summary": "RHBZ#2422699",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2422699"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68183",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68183"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68183",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68183"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2025121632-CVE-2025-68183-f588@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2025121632-CVE-2025-68183-f588@gregkh/T"
}
],
"release_date": "2025-12-16T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-15T15:58:53+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40068"
}
],
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: ima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr"
},
{
"cve": "CVE-2026-31613",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-04-24T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461480"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s Server Message Block (SMB) client. A remote, untrusted server could send a specially crafted symlink error response, leading to an out-of-bounds read vulnerability. This could result in the disclosure of sensitive information from the kernel\u0027s memory to a local user through the readlink(2) system call.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: smb: client: fix OOB reads parsing symlink error response",
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-31613"
},
{
"category": "external",
"summary": "RHBZ#2461480",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461480"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-31613",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31613"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31613",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31613"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026042422-CVE-2026-31613-b061@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026042422-CVE-2026-31613-b061@gregkh/T"
}
],
"release_date": "2026-04-24T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-15T15:58:53+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40068"
}
],
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: smb: client: fix OOB reads parsing symlink error response"
},
{
"cve": "CVE-2026-31684",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-04-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461757"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s network scheduler component. A remote attacker could send specially crafted network packets containing nested Virtual Local Area Network (VLAN) headers. This could cause the kernel to read beyond allocated memory, leading to a system crash and a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: net: sched: act_csum: validate nested VLAN headers",
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-31684"
},
{
"category": "external",
"summary": "RHBZ#2461757",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461757"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-31684",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31684"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31684",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31684"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026042545-CVE-2026-31684-6974@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026042545-CVE-2026-31684-6974@gregkh/T"
}
],
"release_date": "2026-04-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-15T15:58:53+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40068"
}
],
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: net: sched: act_csum: validate nested VLAN headers"
},
{
"cve": "CVE-2026-43027",
"cwe": {
"id": "CWE-459",
"name": "Incomplete Cleanup"
},
"discovery_date": "2026-05-01T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2464369"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s netfilter subsystem, specifically within the `nf_conntrack_helper`. When a connection tracking helper is unregistered, its associated expectations are not properly cleaned up. This oversight can lead to a use-after-free vulnerability, where the system attempts to access memory that has already been released. A local attacker could exploit this to cause a system crash, resulting in a Denial of Service (DoS), or potentially achieve privilege escalation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-43027"
},
{
"category": "external",
"summary": "RHBZ#2464369",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2464369"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-43027",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-43027"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43027",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43027"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026050159-CVE-2026-43027-5711@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026050159-CVE-2026-43027-5711@gregkh/T"
}
],
"release_date": "2026-05-01T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-15T15:58:53+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40068"
}
],
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup"
},
{
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.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-15T15:58:53+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40068"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: rtmutex: Use waiter::task instead of current in remove_waiter()"
},
{
"cve": "CVE-2026-46135",
"cwe": {
"id": "CWE-1341",
"name": "Multiple Releases of Same Resource or Handle"
},
"discovery_date": "2026-05-28T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2482654"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s NVMe over TCP (nvmet-tcp) implementation. A race condition exists between the handling of an Initialization Connection Request (ICReq) and the teardown of a queue. A remote attacker, by sending an ICReq and immediately closing the connection, could trigger a double free vulnerability. This could lead to a denial of service (DoS) due to memory corruption.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: nvmet-tcp: fix race between ICReq handling and queue teardown",
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-46135"
},
{
"category": "external",
"summary": "RHBZ#2482654",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482654"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-46135",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46135"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46135",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46135"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026052818-CVE-2026-46135-6f53@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026052818-CVE-2026-46135-6f53@gregkh/T"
}
],
"release_date": "2026-05-28T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-15T15:58:53+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40068"
}
],
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: nvmet-tcp: fix race between ICReq handling and queue teardown"
},
{
"cve": "CVE-2026-46189",
"cwe": {
"id": "CWE-1341",
"name": "Multiple Releases of Same Resource or Handle"
},
"discovery_date": "2026-05-28T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2482588"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel, specifically within the RDMA (Remote Direct Memory Access) vmw_pvrdma module. This vulnerability is a double free, which means the system attempts to release the same memory resource twice. This can occur in an error handling path within the `pvrdma_alloc_ucontext()` function. Exploiting this flaw could lead to memory corruption or cause the system to become unavailable, resulting in a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-46189"
},
{
"category": "external",
"summary": "RHBZ#2482588",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482588"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-46189",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46189"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46189",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46189"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026052831-CVE-2026-46189-c188@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026052831-CVE-2026-46189-c188@gregkh/T"
}
],
"release_date": "2026-05-28T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-15T15:58:53+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40068"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path"
},
{
"cve": "CVE-2026-46209",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-05-28T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2482636"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s Direct Rendering Manager (DRM) Graphics Execution Manager (GEM) component. This vulnerability arises from an inconsistent calculation of plane dimensions, which can lead to incorrect memory allocation checks. A local attacker could exploit this by creating a specially crafted Graphics Execution Manager (GEM) object that bypasses security validations. This could allow the GPU to access memory outside its designated area, potentially leading to memory corruption, information disclosure, or the execution of unauthorized code.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: drm/gem: Fix inconsistent plane dimension calculation in drm_gem_fb_init_with_funcs()",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "A Moderate flaw was found in the Linux kernel\u0027s Direct Rendering Manager (DRM) Graphics Execution Manager (GEM) component. This vulnerability allows a local attacker to craft a GEM object that bypasses memory allocation checks due to inconsistent plane dimension calculations. Successful exploitation could lead to memory corruption, information disclosure, or arbitrary code execution by enabling the GPU to access memory beyond allocated bounds.",
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-46209"
},
{
"category": "external",
"summary": "RHBZ#2482636",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482636"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-46209",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46209"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46209",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46209"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026052834-CVE-2026-46209-e4e9@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026052834-CVE-2026-46209-e4e9@gregkh/T"
}
],
"release_date": "2026-05-28T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-15T15:58:53+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40068"
}
],
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: drm/gem: Fix inconsistent plane dimension calculation in drm_gem_fb_init_with_funcs()"
},
{
"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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.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-15T15:58:53+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40068"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"BaseOS-8.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.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.6.0.Z.AUS:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.AUS:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.AUS:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.AUS:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:bpftool-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.src",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-abi-stablelists-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-core-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debug-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-debuginfo-common-x86_64-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-devel-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-doc-0:4.18.0-372.201.1.el8_6.noarch",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-modules-extra-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:kernel-tools-libs-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-0:4.18.0-372.201.1.el8_6.x86_64",
"BaseOS-8.6.0.Z.EUS.EXTENSION:python3-perf-debuginfo-0:4.18.0-372.201.1.el8_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock"
}
]
}
RHSA-2026:40082
Vulnerability from csaf_redhat - Published: 2026-07-15 16:23 - Updated: 2026-07-23 09:03A flaw was found in the Linux kernel's netfilter subsystem, specifically within the `nf_conntrack_helper`. When a connection tracking helper is unregistered, its associated expectations are not properly cleaned up. This oversight can lead to a use-after-free vulnerability, where the system attempts to access memory that has already been released. A local attacker could exploit this to cause a system crash, resulting in a Denial of Service (DoS), or potentially achieve privilege escalation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
|
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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for kernel is now available for Red Hat Enterprise Linux 9.2 Update Services for SAP Solutions.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "The kernel packages contain the Linux kernel, the core of any Linux operating system.\n\nSecurity Fix(es):\n\n* kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup (CVE-2026-43027)\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: 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:40082",
"url": "https://access.redhat.com/errata/RHSA-2026:40082"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2464369",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2464369"
},
{
"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": "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_40082.json"
}
],
"title": "Red Hat Security Advisory: kernel security update",
"tracking": {
"current_release_date": "2026-07-23T09:03:38+00:00",
"generator": {
"date": "2026-07-23T09:03:38+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:40082",
"initial_release_date": "2026-07-15T16:23:48+00:00",
"revision_history": [
{
"date": "2026-07-15T16:23:48+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-07-15T16:23:48+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-23T09:03:38+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product": {
"name": "Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_e4s:9.2::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_e4s:9.2::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"product": {
"name": "bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"product_id": "bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.0.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"product": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"product_id": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "perf-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "perf-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"product": {
"name": "rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"product_id": "rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-284.181.1.el9_2?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"product_id": "bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.0.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"product_id": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"product": {
"name": "rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_id": "rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-284.181.1.el9_2?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"product": {
"name": "bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"product_id": "bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.0.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"product": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"product_id": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "perf-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "perf-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"product": {
"name": "rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"product_id": "rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-284.181.1.el9_2?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"product": {
"name": "bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"product_id": "bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.0.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"product": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"product_id": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "perf-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "perf-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-284.181.1.el9_2.s390x",
"product": {
"name": "rtla-0:5.14.0-284.181.1.el9_2.s390x",
"product_id": "rtla-0:5.14.0-284.181.1.el9_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-284.181.1.el9_2?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-284.181.1.el9_2.src",
"product": {
"name": "kernel-0:5.14.0-284.181.1.el9_2.src",
"product_id": "kernel-0:5.14.0-284.181.1.el9_2.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-284.181.1.el9_2?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"product": {
"name": "kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"product_id": "kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-284.181.1.el9_2?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"product": {
"name": "kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"product_id": "kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@5.14.0-284.181.1.el9_2?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64"
},
"product_reference": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x"
},
"product_reference": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64"
},
"product_reference": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:5.14.0-284.181.1.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch"
},
"product_reference": "kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "perf-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "perf-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "perf-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "rtla-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.2)",
"product_id": "AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "AppStream-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.0.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64"
},
"product_reference": "bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.0.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.0.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x"
},
"product_reference": "bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.0.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64"
},
"product_reference": "bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64"
},
"product_reference": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x"
},
"product_reference": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64"
},
"product_reference": "bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-284.181.1.el9_2.src as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src"
},
"product_reference": "kernel-0:5.14.0-284.181.1.el9_2.src",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch"
},
"product_reference": "kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.2)",
"product_id": "BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"relates_to_product_reference": "BaseOS-9.2.0.Z.E4S"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-43027",
"cwe": {
"id": "CWE-459",
"name": "Incomplete Cleanup"
},
"discovery_date": "2026-05-01T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2464369"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s netfilter subsystem, specifically within the `nf_conntrack_helper`. When a connection tracking helper is unregistered, its associated expectations are not properly cleaned up. This oversight can lead to a use-after-free vulnerability, where the system attempts to access memory that has already been released. A local attacker could exploit this to cause a system crash, resulting in a Denial of Service (DoS), or potentially achieve privilege escalation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-43027"
},
{
"category": "external",
"summary": "RHBZ#2464369",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2464369"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-43027",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-43027"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43027",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43027"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026050159-CVE-2026-43027-5711@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026050159-CVE-2026-43027-5711@gregkh/T"
}
],
"release_date": "2026-05-01T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-15T16:23:48+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40082"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup"
},
{
"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": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.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-15T16:23:48+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40082"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.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": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.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": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.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-15T16:23:48+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40082"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 5.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.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": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.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-15T16:23:48+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40082"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.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": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock"
},
{
"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": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.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-15T16:23:48+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40082"
},
{
"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": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.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": [
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-devel-matched-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-doc-0:5.14.0-284.181.1.el9_2.noarch",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.aarch64",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.ppc64le",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.s390x",
"AppStream-9.2.0.Z.E4S:rtla-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:bpftool-debuginfo-0:7.0.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.src",
"BaseOS-9.2.0.Z.E4S:kernel-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-284.181.1.el9_2.noarch",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-core-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-modules-extra-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:kernel-tools-libs-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-uki-virt-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-0:5.14.0-284.181.1.el9_2.x86_64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.aarch64",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.ppc64le",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.s390x",
"BaseOS-9.2.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-284.181.1.el9_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: KVM: x86: Fix shadow paging use-after-free due to unexpected role"
}
]
}
RHSA-2026:40425
Vulnerability from csaf_redhat - Published: 2026-07-16 00:17 - Updated: 2026-07-27 22:28A 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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the XFS filesystem. A race condition in the copy-on-write mechanism for reflinked files can cause writes to bypass the copy-on-write process and modify shared data blocks directly. As a result, data intended for a private copy may be written to the original shared location, corrupting the contents of other files that reference those blocks. A local attacker with read access to a file on an XFS filesystem with reflink enabled could exploit this flaw to corrupt files they do not have write access to, allowing content to be added to the target file. If properly exploited this vulnerability may lead to privilege escalations or arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for kernel is now available for Red Hat Enterprise Linux 9.6\nExtended Update Support.\n\nRed Hat Product Security has rated this update as having a security impact\nof Important. A Common Vulnerability Scoring System (CVSS) base score,\nwhich gives a detailed severity rating, is available for each vulnerability\nfrom 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\noperating system.\n\nSecurity Fix(es):\n\n* kernel: rtmutex: Use waiter::task instead of current in remove_waiter() (CVE-2026-43499)\n\n* kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock (CVE-2026-53166)\n\n* kernel: xfs: resample the data fork mapping after cycling ILOCK\n\nFor more details about the security issue(s), including the impact, a CVSS\nscore, acknowledgments, and other related information, refer to the CVE\npage(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:40425",
"url": "https://access.redhat.com/errata/RHSA-2026:40425"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2480453",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2480453"
},
{
"category": "external",
"summary": "2492805",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492805"
},
{
"category": "external",
"summary": "2498915",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2498915"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_40425.json"
}
],
"title": "Red Hat Security Advisory: kernel update",
"tracking": {
"current_release_date": "2026-07-27T22:28:28+00:00",
"generator": {
"date": "2026-07-27T22:28:28+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:40425",
"initial_release_date": "2026-07-16T00:17:30+00:00",
"revision_history": [
{
"date": "2026-07-16T00:17:30+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-07-16T00:17:30+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-27T22:28:28+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product": {
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.6::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_eus:9.6::baseos"
}
}
},
{
"category": "product_name",
"name": "Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product": {
"name": "Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.6::crb"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product": {
"name": "Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.6::realtime"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product": {
"name": "Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.6::nfv"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "perf-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "perf-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "rv-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "rv-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-devel@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-extra@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-devel@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-extra@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-570.128.1.el9_6?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"product": {
"name": "libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_id": "libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-570.128.1.el9_6?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "perf-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "perf-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "rv-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "rv-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt-addons@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-570.128.1.el9_6?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "perf-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "perf-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "rtla-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "rtla-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "rv-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "rv-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-570.128.1.el9_6.s390x",
"product": {
"name": "libperf-0:5.14.0-570.128.1.el9_6.s390x",
"product_id": "libperf-0:5.14.0-570.128.1.el9_6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-570.128.1.el9_6?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"product": {
"name": "kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"product_id": "kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@5.14.0-570.128.1.el9_6?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"product": {
"name": "kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"product_id": "kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-570.128.1.el9_6?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-570.128.1.el9_6.src",
"product": {
"name": "kernel-0:5.14.0-570.128.1.el9_6.src",
"product_id": "kernel-0:5.14.0-570.128.1.el9_6.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-570.128.1.el9_6?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:5.14.0-570.128.1.el9_6.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch"
},
"product_reference": "kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "perf-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "perf-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "perf-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "rtla-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "rv-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "rv-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "rv-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-570.128.1.el9_6.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src"
},
"product_reference": "kernel-0:5.14.0-570.128.1.el9_6.src",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch"
},
"product_reference": "kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "libperf-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v.9.6)",
"product_id": "NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "NFV-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v.9.6)",
"product_id": "RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"relates_to_product_reference": "RT-9.6.0.Z.EUS"
}
]
},
"vulnerabilities": [
{
"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": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.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-16T00:17:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40425"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.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": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: rtmutex: Use waiter::task instead of current in remove_waiter()"
},
{
"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": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.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-16T00:17:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40425"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.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": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock"
},
{
"cve": "CVE-2026-64600",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"discovery_date": "2026-07-10T06:29:23.730000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2498915"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the XFS filesystem. A race condition in the copy-on-write mechanism for reflinked files can cause writes to bypass the copy-on-write process and modify shared data blocks directly. As a result, data intended for a private copy may be written to the original shared location, corrupting the contents of other files that reference those blocks. A local attacker with read access to a file on an XFS filesystem with reflink enabled could exploit this flaw to corrupt files they do not have write access to, allowing content to be added to the target file. If properly exploited this vulnerability may lead to privilege escalations or arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: XFS data corruption using reflink",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw affects XFS filesystems that have the reflink feature enabled (reflink=1), which is the default configuration for XFS filesystems created on Red Hat Enterprise Linux 8 and later. The issue is a race condition where internal file mapping information becomes stale during a lock cycle but is not refreshed before being used to determine whether data blocks are shared between files. Exploitation requires local access and read permission to the target file. Systems using XFS without reflink enabled, or using other filesystems such as ext4, are not affected. Red Hat Enterprise Linux 7 and earlier are not affected, as the reflink feature is not available on those versions.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-64600"
},
{
"category": "external",
"summary": "RHBZ#2498915",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2498915"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-64600",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-64600"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-64600",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-64600"
},
{
"category": "external",
"summary": "https://cdn2.qualys.com/advisory/2026/07/22/RefluXFS.txt",
"url": "https://cdn2.qualys.com/advisory/2026/07/22/RefluXFS.txt"
}
],
"release_date": "2026-07-14T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-16T00:17:30+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40425"
},
{
"category": "workaround",
"details": "This vulnerability can be mitigated using a SystemTap script. To create and apply the mitigation, follow the steps below:\n\n1. Install and configure SystemTap\n\nInstall the SystemTap package and its dependencies following the instructions at:\nhttps://docs.redhat.com/en/documentation/red_hat_enterprise_linux/10/html/monitoring_and_managing_system_status_and_performance/getting-started-with-systemtap\n\n2. Create the mitigation script\n\nCreate a file named `refluxfs_mitigation.stp` with the following contents:\n\n~~~\nprobe begin {\n printf(\"refluxfs mitigation loaded\\n\")\n}\n\nprobe module(\"xfs\").function(\"xfs_file_remap_range\").call {\n $remap_flags = 0xffff\n}\n\nprobe module(\"xfs\").function(\"xfs_file_remap_range\").return {\n $return = -95\n}\n\nprobe end {\n printf(\"refluxfs mitigation unloaded\\n\")\n}\n~~~\n\n3. Load the mitigation\n\nAs the `root` user, execute SystemTap in guru mode:\n\n~~~\nstap -g refluxfs_mitigation.stp\n~~~\n\nOnce the script is compiled and loaded, the following message will appear:\n\n~~~\nrefluxfs mitigation loaded\n~~~\n\nWith the mitigation active, any application attempting to use reflink to copy files will receive `-EOPNOTSUPP` (`-95`) when calling the `FICLONE` ioctl (or its variants) or the `copy_file_range()` syscall.\n\nImportant considerations:\n\n1. SystemTap scripts are compiled into kernel modules. On systems with Secure Boot enabled, the kernel is in lockdown mode and will only load modules signed with a valid Secure Boot key or a key enrolled in the MOK. SystemTap can sign the generated module at compile time, but the user is responsible for key management. For instructions, refer to the \"Sign a SystemTap module\" section of:\nhttps://www.redhat.com/en/blog/secure-boot-systemtap\n\n2. The SystemTap module is not persistent across reboots. If the machine is restarted or the `stap` process is terminated, the module will be unloaded and the mitigation must be reapplied.\n\n3. Programs that rely on CoW/reflink without a fallback mechanism may fail, as reflink operations will be unavailable on any XFS filesystem while the mitigation is loaded. This includes the `cp` command when run with `--reflink=always`. In that case, use `--reflink=auto` instead, which is the default behavior in Red Hat Enterprise Linux.",
"product_ids": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.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": [
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-devel-matched-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-doc-0:5.14.0-570.128.1.el9_6.noarch",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rtla-0:5.14.0-570.128.1.el9_6.x86_64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.aarch64",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.ppc64le",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.s390x",
"AppStream-9.6.0.Z.EUS:rv-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.src",
"BaseOS-9.6.0.Z.EUS:kernel-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-570.128.1.el9_6.noarch",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:kernel-tools-libs-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-uki-virt-addons-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.s390x",
"CRB-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-kvm-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"NFV-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-64k-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debug-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-devel-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-core-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-rt-modules-extra-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:libperf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.aarch64",
"RT-9.6.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-570.128.1.el9_6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: XFS data corruption using reflink"
}
]
}
RHSA-2026:40760
Vulnerability from csaf_redhat - Published: 2026-07-16 07:24 - Updated: 2026-07-23 16:24In the Linux kernel, the following vulnerability has been resolved: ima: don't clear IMA_DIGSIG flag when setting or removing non-IMA xattr Currently when both IMA and EVM are in fix mode, the IMA signature will be reset to IMA hash if a program first stores IMA signature in security.ima and then writes/removes some other security xattr for the file. For example, on Fedora, after booting the kernel with "ima_appraise=fix evm=fix ima_policy=appraise_tcb" and installing rpm-plugin-ima, installing/reinstalling a package will not make good reference IMA signature generated. Instead IMA hash is generated, # getfattr -m - -d -e hex /usr/bin/bash # file: usr/bin/bash security.ima=0x0404... This happens because when setting security.selinux, the IMA_DIGSIG flag that had been set early was cleared. As a result, IMA hash is generated when the file is closed. Similarly, IMA signature can be cleared on file close after removing security xattr like security.evm or setting/removing ACL. Prevent replacing the IMA file signature with a file hash, by preventing the IMA_DIGSIG flag from being reset. Here's a minimal C reproducer which sets security.selinux as the last step which can also replaced by removing security.evm or setting ACL, #include <stdio.h> #include <sys/xattr.h> #include <fcntl.h> #include <unistd.h> #include <string.h> #include <stdlib.h> int main() { const char* file_path = "/usr/sbin/test_binary"; const char* hex_string = "030204d33204490066306402304"; int length = strlen(hex_string); char* ima_attr_value; int fd; fd = open(file_path, O_WRONLY|O_CREAT|O_EXCL, 0644); if (fd == -1) { perror("Error opening file"); return 1; } ima_attr_value = (char*)malloc(length / 2 ); for (int i = 0, j = 0; i < length; i += 2, j++) { sscanf(hex_string + i, "%2hhx", &ima_attr_value[j]); } if (fsetxattr(fd, "security.ima", ima_attr_value, length/2, 0) == -1) { perror("Error setting extended attribute"); close(fd); return 1; } const char* selinux_value= "system_u:object_r:bin_t:s0"; if (fsetxattr(fd, "security.selinux", selinux_value, strlen(selinux_value), 0) == -1) { perror("Error setting extended attribute"); close(fd); return 1; } close(fd); return 0; }
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's Bluetooth SCO (Synchronous Connection-Oriented) protocol implementation. The `sco_recv_frame()` function fails to properly hold a reference to a socket after releasing a lock. This oversight allows a concurrent operation to free the socket while it is still being accessed, leading to a use-after-free vulnerability. A local attacker could potentially exploit this to cause memory corruption or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's Server Message Block (SMB) client. A remote, untrusted server could send a specially crafted symlink error response, leading to an out-of-bounds read vulnerability. This could result in the disclosure of sensitive information from the kernel's memory to a local user through the readlink(2) system call.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's netfilter subsystem, specifically within the `nf_conntrack_helper`. When a connection tracking helper is unregistered, its associated expectations are not properly cleaned up. This oversight can lead to a use-after-free vulnerability, where the system attempts to access memory that has already been released. A local attacker could exploit this to cause a system crash, resulting in a Denial of Service (DoS), or potentially achieve privilege escalation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Linux kernel, specifically within the RDMA (Remote Direct Memory Access) vmw_pvrdma module. This vulnerability is a double free, which means the system attempts to release the same memory resource twice. This can occur in an error handling path within the `pvrdma_alloc_ucontext()` function. Exploiting this flaw could lead to memory corruption or cause the system to become unavailable, resulting in a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's Direct Rendering Manager (DRM) Graphics Execution Manager (GEM) component. This vulnerability arises from an inconsistent calculation of plane dimensions, which can lead to incorrect memory allocation checks. A local attacker could exploit this by creating a specially crafted Graphics Execution Manager (GEM) object that bypasses security validations. This could allow the GPU to access memory outside its designated area, potentially leading to memory corruption, information disclosure, or the execution of unauthorized code.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"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.8 Update Services for SAP Solutions and Red Hat Enterprise Linux 8.8 Telecommunications Update Service.\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: ima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr (CVE-2025-68183)\n\n* kernel: Bluetooth: SCO: Fix use-after-free in sco_recv_frame() due to missing sock_hold (CVE-2026-31408)\n\n* kernel: smb: client: fix OOB reads parsing symlink error response (CVE-2026-31613)\n\n* kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup (CVE-2026-43027)\n\n* kernel: rtmutex: Use waiter::task instead of current in remove_waiter() (CVE-2026-43499)\n\n* kernel: RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path (CVE-2026-46189)\n\n* kernel: drm/gem: Fix inconsistent plane dimension calculation in drm_gem_fb_init_with_funcs() (CVE-2026-46209)\n\n* kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock (CVE-2026-53166)\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:40760",
"url": "https://access.redhat.com/errata/RHSA-2026:40760"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2422699",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2422699"
},
{
"category": "external",
"summary": "2455334",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455334"
},
{
"category": "external",
"summary": "2461480",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461480"
},
{
"category": "external",
"summary": "2464369",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2464369"
},
{
"category": "external",
"summary": "2480453",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2480453"
},
{
"category": "external",
"summary": "2482588",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482588"
},
{
"category": "external",
"summary": "2482636",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482636"
},
{
"category": "external",
"summary": "2492805",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492805"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_40760.json"
}
],
"title": "Red Hat Security Advisory: kernel security update",
"tracking": {
"current_release_date": "2026-07-23T16:24:14+00:00",
"generator": {
"date": "2026-07-23T16:24:14+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:40760",
"initial_release_date": "2026-07-16T07:24:12+00:00",
"revision_history": [
{
"date": "2026-07-16T07:24:12+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-07-16T07:24:12+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-23T16:24:14+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 E4S (v.8.8)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_e4s:8.8::baseos"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_tus:8.8::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product": {
"name": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_id": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-477.152.1.el8_8?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "perf-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "perf-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_id": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-477.152.1.el8_8?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:4.18.0-477.152.1.el8_8.src",
"product": {
"name": "kernel-0:4.18.0-477.152.1.el8_8.src",
"product_id": "kernel-0:4.18.0-477.152.1.el8_8.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@4.18.0-477.152.1.el8_8?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"product": {
"name": "kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"product_id": "kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@4.18.0-477.152.1.el8_8?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"product": {
"name": "kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"product_id": "kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@4.18.0-477.152.1.el8_8?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-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-477.152.1.el8_8.src as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src"
},
"product_reference": "kernel-0:4.18.0-477.152.1.el8_8.src",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch"
},
"product_reference": "kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:4.18.0-477.152.1.el8_8.noarch as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch"
},
"product_reference": "kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "perf-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-477.152.1.el8_8.src as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src"
},
"product_reference": "kernel-0:4.18.0-477.152.1.el8_8.src",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch"
},
"product_reference": "kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:4.18.0-477.152.1.el8_8.noarch as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch"
},
"product_reference": "kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "perf-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.8)",
"product_id": "BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"relates_to_product_reference": "BaseOS-8.8.0.Z.TUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-68183",
"cwe": {
"id": "CWE-354",
"name": "Improper Validation of Integrity Check Value"
},
"discovery_date": "2025-12-16T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2422699"
}
],
"notes": [
{
"category": "description",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\nima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr\n\nCurrently when both IMA and EVM are in fix mode, the IMA signature will\nbe reset to IMA hash if a program first stores IMA signature in\nsecurity.ima and then writes/removes some other security xattr for the\nfile.\n\nFor example, on Fedora, after booting the kernel with \"ima_appraise=fix\nevm=fix ima_policy=appraise_tcb\" and installing rpm-plugin-ima,\ninstalling/reinstalling a package will not make good reference IMA\nsignature generated. Instead IMA hash is generated,\n\n # getfattr -m - -d -e hex /usr/bin/bash\n # file: usr/bin/bash\n security.ima=0x0404...\n\nThis happens because when setting security.selinux, the IMA_DIGSIG flag\nthat had been set early was cleared. As a result, IMA hash is generated\nwhen the file is closed.\n\nSimilarly, IMA signature can be cleared on file close after removing\nsecurity xattr like security.evm or setting/removing ACL.\n\nPrevent replacing the IMA file signature with a file hash, by preventing\nthe IMA_DIGSIG flag from being reset.\n\nHere\u0027s a minimal C reproducer which sets security.selinux as the last\nstep which can also replaced by removing security.evm or setting ACL,\n\n #include \u003cstdio.h\u003e\n #include \u003csys/xattr.h\u003e\n #include \u003cfcntl.h\u003e\n #include \u003cunistd.h\u003e\n #include \u003cstring.h\u003e\n #include \u003cstdlib.h\u003e\n\n int main() {\n const char* file_path = \"/usr/sbin/test_binary\";\n const char* hex_string = \"030204d33204490066306402304\";\n int length = strlen(hex_string);\n char* ima_attr_value;\n int fd;\n\n fd = open(file_path, O_WRONLY|O_CREAT|O_EXCL, 0644);\n if (fd == -1) {\n perror(\"Error opening file\");\n return 1;\n }\n\n ima_attr_value = (char*)malloc(length / 2 );\n for (int i = 0, j = 0; i \u003c length; i += 2, j++) {\n sscanf(hex_string + i, \"%2hhx\", \u0026ima_attr_value[j]);\n }\n\n if (fsetxattr(fd, \"security.ima\", ima_attr_value, length/2, 0) == -1) {\n perror(\"Error setting extended attribute\");\n close(fd);\n return 1;\n }\n\n const char* selinux_value= \"system_u:object_r:bin_t:s0\";\n if (fsetxattr(fd, \"security.selinux\", selinux_value, strlen(selinux_value), 0) == -1) {\n perror(\"Error setting extended attribute\");\n close(fd);\n return 1;\n }\n\n close(fd);\n\n return 0;\n }",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: ima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-68183"
},
{
"category": "external",
"summary": "RHBZ#2422699",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2422699"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-68183",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-68183"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-68183",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68183"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2025121632-CVE-2025-68183-f588@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2025121632-CVE-2025-68183-f588@gregkh/T"
}
],
"release_date": "2025-12-16T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-16T07:24:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40760"
}
],
"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.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: ima: don\u0027t clear IMA_DIGSIG flag when setting or removing non-IMA xattr"
},
{
"cve": "CVE-2026-31408",
"cwe": {
"id": "CWE-911",
"name": "Improper Update of Reference Count"
},
"discovery_date": "2026-04-06T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455334"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s Bluetooth SCO (Synchronous Connection-Oriented) protocol implementation. The `sco_recv_frame()` function fails to properly hold a reference to a socket after releasing a lock. This oversight allows a concurrent operation to free the socket while it is still being accessed, leading to a use-after-free vulnerability. A local attacker could potentially exploit this to cause memory corruption or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: Bluetooth: SCO: Fix use-after-free in sco_recv_frame() due to missing sock_hold",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Under `sco_conn_lock`, the code read `conn-\u003esk` then dropped the lock without `sco_sock_hold()`, so `close()` could race and free the socket before `sk-\u003esk_state` use. The fix mirrors other SCO helpers. Adjacent Bluetooth is involved; impact is UAF and likely crash.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-31408"
},
{
"category": "external",
"summary": "RHBZ#2455334",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455334"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-31408",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31408"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31408",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31408"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026040629-CVE-2026-31408-9f0f@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026040629-CVE-2026-31408-9f0f@gregkh/T"
}
],
"release_date": "2026-04-06T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-16T07:24:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40760"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: Bluetooth: SCO: Fix use-after-free in sco_recv_frame() due to missing sock_hold"
},
{
"cve": "CVE-2026-31613",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-04-24T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2461480"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s Server Message Block (SMB) client. A remote, untrusted server could send a specially crafted symlink error response, leading to an out-of-bounds read vulnerability. This could result in the disclosure of sensitive information from the kernel\u0027s memory to a local user through the readlink(2) system call.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: smb: client: fix OOB reads parsing symlink error response",
"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.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-31613"
},
{
"category": "external",
"summary": "RHBZ#2461480",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2461480"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-31613",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31613"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31613",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31613"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026042422-CVE-2026-31613-b061@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026042422-CVE-2026-31613-b061@gregkh/T"
}
],
"release_date": "2026-04-24T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-16T07:24:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40760"
}
],
"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.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: smb: client: fix OOB reads parsing symlink error response"
},
{
"cve": "CVE-2026-43027",
"cwe": {
"id": "CWE-459",
"name": "Incomplete Cleanup"
},
"discovery_date": "2026-05-01T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2464369"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s netfilter subsystem, specifically within the `nf_conntrack_helper`. When a connection tracking helper is unregistered, its associated expectations are not properly cleaned up. This oversight can lead to a use-after-free vulnerability, where the system attempts to access memory that has already been released. A local attacker could exploit this to cause a system crash, resulting in a Denial of Service (DoS), or potentially achieve privilege escalation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-43027"
},
{
"category": "external",
"summary": "RHBZ#2464369",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2464369"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-43027",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-43027"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-43027",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-43027"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026050159-CVE-2026-43027-5711@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026050159-CVE-2026-43027-5711@gregkh/T"
}
],
"release_date": "2026-05-01T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-16T07:24:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40760"
}
],
"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.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: netfilter: nf_conntrack_helper: pass helper to expect cleanup"
},
{
"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.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.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-16T07:24:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40760"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.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.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: rtmutex: Use waiter::task instead of current in remove_waiter()"
},
{
"cve": "CVE-2026-46189",
"cwe": {
"id": "CWE-1341",
"name": "Multiple Releases of Same Resource or Handle"
},
"discovery_date": "2026-05-28T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2482588"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel, specifically within the RDMA (Remote Direct Memory Access) vmw_pvrdma module. This vulnerability is a double free, which means the system attempts to release the same memory resource twice. This can occur in an error handling path within the `pvrdma_alloc_ucontext()` function. Exploiting this flaw could lead to memory corruption or cause the system to become unavailable, resulting in a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-46189"
},
{
"category": "external",
"summary": "RHBZ#2482588",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482588"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-46189",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46189"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46189",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46189"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026052831-CVE-2026-46189-c188@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026052831-CVE-2026-46189-c188@gregkh/T"
}
],
"release_date": "2026-05-28T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-16T07:24:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40760"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: RDMA/vmw_pvrdma: Fix double free on pvrdma_alloc_ucontext() error path"
},
{
"cve": "CVE-2026-46209",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-05-28T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2482636"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s Direct Rendering Manager (DRM) Graphics Execution Manager (GEM) component. This vulnerability arises from an inconsistent calculation of plane dimensions, which can lead to incorrect memory allocation checks. A local attacker could exploit this by creating a specially crafted Graphics Execution Manager (GEM) object that bypasses security validations. This could allow the GPU to access memory outside its designated area, potentially leading to memory corruption, information disclosure, or the execution of unauthorized code.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: drm/gem: Fix inconsistent plane dimension calculation in drm_gem_fb_init_with_funcs()",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "A Moderate flaw was found in the Linux kernel\u0027s Direct Rendering Manager (DRM) Graphics Execution Manager (GEM) component. This vulnerability allows a local attacker to craft a GEM object that bypasses memory allocation checks due to inconsistent plane dimension calculations. Successful exploitation could lead to memory corruption, information disclosure, or arbitrary code execution by enabling the GPU to access memory beyond allocated bounds.",
"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.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-46209"
},
{
"category": "external",
"summary": "RHBZ#2482636",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482636"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-46209",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46209"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46209",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46209"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026052834-CVE-2026-46209-e4e9@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026052834-CVE-2026-46209-e4e9@gregkh/T"
}
],
"release_date": "2026-05-28T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-16T07:24:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40760"
}
],
"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.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: drm/gem: Fix inconsistent plane dimension calculation in drm_gem_fb_init_with_funcs()"
},
{
"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.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.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-16T07:24:12+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:40760"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.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.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.E4S:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.ppc64le",
"BaseOS-8.8.0.Z.E4S:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:bpftool-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.src",
"BaseOS-8.8.0.Z.TUS:kernel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-abi-stablelists-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-core-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debug-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-devel-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-doc-0:4.18.0-477.152.1.el8_8.noarch",
"BaseOS-8.8.0.Z.TUS:kernel-modules-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-modules-extra-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:kernel-tools-libs-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-0:4.18.0-477.152.1.el8_8.x86_64",
"BaseOS-8.8.0.Z.TUS:python3-perf-debuginfo-0:4.18.0-477.152.1.el8_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock"
}
]
}
RHSA-2026:41062
Vulnerability from csaf_redhat - Published: 2026-07-16 21:55 - Updated: 2026-07-27 22:28A 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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the XFS filesystem. A race condition in the copy-on-write mechanism for reflinked files can cause writes to bypass the copy-on-write process and modify shared data blocks directly. As a result, data intended for a private copy may be written to the original shared location, corrupting the contents of other files that reference those blocks. A local attacker with read access to a file on an XFS filesystem with reflink enabled could exploit this flaw to corrupt files they do not have write access to, allowing content to be added to the target file. If properly exploited this vulnerability may lead to privilege escalations or arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"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 10.0 Extended Update Support.\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: rtmutex: Use waiter::task instead of current in remove_waiter() (CVE-2026-43499)\n\n* kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock (CVE-2026-53166)\n\n* kernel: XFS data corruption using reflink ()\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:41062",
"url": "https://access.redhat.com/errata/RHSA-2026:41062"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2480453",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2480453"
},
{
"category": "external",
"summary": "2492805",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492805"
},
{
"category": "external",
"summary": "2498915",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2498915"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_41062.json"
}
],
"title": "Red Hat Security Advisory: kernel security update",
"tracking": {
"current_release_date": "2026-07-27T22:28:32+00:00",
"generator": {
"date": "2026-07-27T22:28:32+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:41062",
"initial_release_date": "2026-07-16T21:55:01+00:00",
"revision_history": [
{
"date": "2026-07-16T21:55:01+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-07-16T21:55:01+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-27T22:28:32+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product": {
"name": "Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux_eus:10.0"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux_eus:10.0"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product": {
"name": "Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux_eus:10.0"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product": {
"name": "Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux_eus:10.0"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product": {
"name": "Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux_eus:10.0"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel-matched@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "perf-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "perf-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rv-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "rv-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "rv-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-extra@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt-addons@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-devel@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-extra@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-devel@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-extra@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product": {
"name": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_id": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@6.12.0-55.89.1.el10_0?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"product": {
"name": "libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_id": "libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@6.12.0-55.89.1.el10_0?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "perf-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "perf-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rv-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "rv-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "rv-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-uki-virt@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt-addons@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-kvm@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product": {
"name": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product_id": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@6.12.0-55.89.1.el10_0?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "perf-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "perf-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rtla-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "rtla-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "rtla-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rv-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "rv-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "rv-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-core@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-0:6.12.0-55.89.1.el10_0.s390x",
"product": {
"name": "libperf-0:6.12.0-55.89.1.el10_0.s390x",
"product_id": "libperf-0:6.12.0-55.89.1.el10_0.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@6.12.0-55.89.1.el10_0?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"product": {
"name": "kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"product_id": "kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@6.12.0-55.89.1.el10_0?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"product": {
"name": "kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"product_id": "kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@6.12.0-55.89.1.el10_0?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:6.12.0-55.89.1.el10_0.src",
"product": {
"name": "kernel-0:6.12.0-55.89.1.el10_0.src",
"product_id": "kernel-0:6.12.0-55.89.1.el10_0.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@6.12.0-55.89.1.el10_0?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:6.12.0-55.89.1.el10_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch"
},
"product_reference": "kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "perf-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "perf-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "perf-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "rtla-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "rv-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "rv-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0)",
"product_id": "AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "rv-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "AppStream-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:6.12.0-55.89.1.el10_0.src as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src"
},
"product_reference": "kernel-0:6.12.0-55.89.1.el10_0.src",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch"
},
"product_reference": "kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v. 10.0)",
"product_id": "BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "BaseOS-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "libperf-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder EUS (v. 10.0)",
"product_id": "CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "CRB-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV EUS (v. 10.0)",
"product_id": "NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "NFV-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux Real Time EUS (v. 10.0)",
"product_id": "RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"relates_to_product_reference": "RT-10.0.Z.E2S"
}
]
},
"vulnerabilities": [
{
"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": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.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-16T21:55:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:41062"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.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": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: rtmutex: Use waiter::task instead of current in remove_waiter()"
},
{
"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": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.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-16T21:55:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:41062"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.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": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock"
},
{
"cve": "CVE-2026-64600",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"discovery_date": "2026-07-10T06:29:23.730000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2498915"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the XFS filesystem. A race condition in the copy-on-write mechanism for reflinked files can cause writes to bypass the copy-on-write process and modify shared data blocks directly. As a result, data intended for a private copy may be written to the original shared location, corrupting the contents of other files that reference those blocks. A local attacker with read access to a file on an XFS filesystem with reflink enabled could exploit this flaw to corrupt files they do not have write access to, allowing content to be added to the target file. If properly exploited this vulnerability may lead to privilege escalations or arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: XFS data corruption using reflink",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw affects XFS filesystems that have the reflink feature enabled (reflink=1), which is the default configuration for XFS filesystems created on Red Hat Enterprise Linux 8 and later. The issue is a race condition where internal file mapping information becomes stale during a lock cycle but is not refreshed before being used to determine whether data blocks are shared between files. Exploitation requires local access and read permission to the target file. Systems using XFS without reflink enabled, or using other filesystems such as ext4, are not affected. Red Hat Enterprise Linux 7 and earlier are not affected, as the reflink feature is not available on those versions.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-64600"
},
{
"category": "external",
"summary": "RHBZ#2498915",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2498915"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-64600",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-64600"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-64600",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-64600"
},
{
"category": "external",
"summary": "https://cdn2.qualys.com/advisory/2026/07/22/RefluXFS.txt",
"url": "https://cdn2.qualys.com/advisory/2026/07/22/RefluXFS.txt"
}
],
"release_date": "2026-07-14T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-16T21:55:01+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:41062"
},
{
"category": "workaround",
"details": "This vulnerability can be mitigated using a SystemTap script. To create and apply the mitigation, follow the steps below:\n\n1. Install and configure SystemTap\n\nInstall the SystemTap package and its dependencies following the instructions at:\nhttps://docs.redhat.com/en/documentation/red_hat_enterprise_linux/10/html/monitoring_and_managing_system_status_and_performance/getting-started-with-systemtap\n\n2. Create the mitigation script\n\nCreate a file named `refluxfs_mitigation.stp` with the following contents:\n\n~~~\nprobe begin {\n printf(\"refluxfs mitigation loaded\\n\")\n}\n\nprobe module(\"xfs\").function(\"xfs_file_remap_range\").call {\n $remap_flags = 0xffff\n}\n\nprobe module(\"xfs\").function(\"xfs_file_remap_range\").return {\n $return = -95\n}\n\nprobe end {\n printf(\"refluxfs mitigation unloaded\\n\")\n}\n~~~\n\n3. Load the mitigation\n\nAs the `root` user, execute SystemTap in guru mode:\n\n~~~\nstap -g refluxfs_mitigation.stp\n~~~\n\nOnce the script is compiled and loaded, the following message will appear:\n\n~~~\nrefluxfs mitigation loaded\n~~~\n\nWith the mitigation active, any application attempting to use reflink to copy files will receive `-EOPNOTSUPP` (`-95`) when calling the `FICLONE` ioctl (or its variants) or the `copy_file_range()` syscall.\n\nImportant considerations:\n\n1. SystemTap scripts are compiled into kernel modules. On systems with Secure Boot enabled, the kernel is in lockdown mode and will only load modules signed with a valid Secure Boot key or a key enrolled in the MOK. SystemTap can sign the generated module at compile time, but the user is responsible for key management. For instructions, refer to the \"Sign a SystemTap module\" section of:\nhttps://www.redhat.com/en/blog/secure-boot-systemtap\n\n2. The SystemTap module is not persistent across reboots. If the machine is restarted or the `stap` process is terminated, the module will be unloaded and the mitigation must be reapplied.\n\n3. Programs that rely on CoW/reflink without a fallback mechanism may fail, as reflink operations will be unavailable on any XFS filesystem while the mitigation is loaded. This includes the `cp` command when run with `--reflink=always`. In that case, use `--reflink=auto` instead, which is the default behavior in Red Hat Enterprise Linux.",
"product_ids": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.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": [
"AppStream-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-64k-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debug-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-devel-matched-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-doc-0:6.12.0-55.89.1.el10_0.noarch",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:kernel-zfcpdump-devel-matched-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rtla-0:6.12.0-55.89.1.el10_0.x86_64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.aarch64",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.ppc64le",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.s390x",
"AppStream-10.0.Z.E2S:rv-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.src",
"BaseOS-10.0.Z.E2S:kernel-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-abi-stablelists-0:6.12.0-55.89.1.el10_0.noarch",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debug-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:kernel-tools-libs-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:kernel-uki-virt-addons-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-core-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:kernel-zfcpdump-modules-extra-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"BaseOS-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-ppc64le-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-s390x-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:kernel-tools-libs-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:kernel-zfcpdump-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.ppc64le",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.s390x",
"CRB-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-kvm-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"NFV-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-aarch64-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-debuginfo-common-x86_64-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-64k-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-64k-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debug-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-devel-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-core-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-rt-modules-extra-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:kernel-tools-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:libperf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.aarch64",
"RT-10.0.Z.E2S:python3-perf-debuginfo-0:6.12.0-55.89.1.el10_0.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: XFS data corruption using reflink"
}
]
}
RHSA-2026:41063
Vulnerability from csaf_redhat - Published: 2026-07-16 21:59 - Updated: 2026-07-27 22:28A 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.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
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).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the XFS filesystem. A race condition in the copy-on-write mechanism for reflinked files can cause writes to bypass the copy-on-write process and modify shared data blocks directly. As a result, data intended for a private copy may be written to the original shared location, corrupting the contents of other files that reference those blocks. A local attacker with read access to a file on an XFS filesystem with reflink enabled could exploit this flaw to corrupt files they do not have write access to, allowing content to be added to the target file. If properly exploited this vulnerability may lead to privilege escalations or arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for kernel is now available for Red Hat Enterprise Linux 9.4 Update Services for SAP Solutions.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "The kernel packages contain the Linux kernel, the core of any Linux operating system.\n\nSecurity Fix(es):\n\n* kernel: rtmutex: Use waiter::task instead of current in remove_waiter() (CVE-2026-43499)\n\n* kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock (CVE-2026-53166)\n\n* kernel: XFS data corruption using reflink ()\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:41063",
"url": "https://access.redhat.com/errata/RHSA-2026:41063"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2480453",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2480453"
},
{
"category": "external",
"summary": "2492805",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492805"
},
{
"category": "external",
"summary": "2498915",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2498915"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_41063.json"
}
],
"title": "Red Hat Security Advisory: kernel security update",
"tracking": {
"current_release_date": "2026-07-27T22:28:29+00:00",
"generator": {
"date": "2026-07-27T22:28:29+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.7"
}
},
"id": "RHSA-2026:41063",
"initial_release_date": "2026-07-16T21:59:56+00:00",
"revision_history": [
{
"date": "2026-07-16T21:59:56+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-07-16T21:59:56+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-07-27T22:28:29+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product": {
"name": "Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_e4s:9.4::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_e4s:9.4::baseos"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product": {
"name": "Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_e4s:9.4::realtime"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product": {
"name": "Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_e4s:9.4::nfv"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "perf-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "perf-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "rv-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "rv-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"product_id": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"product": {
"name": "bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"product_id": "bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"product": {
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"product_id": "python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.138.1.el9_4?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"product_id": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"product_id": "bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"product": {
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_id": "python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.138.1.el9_4?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "perf-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "perf-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "rv-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "rv-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"product_id": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"product": {
"name": "bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"product_id": "bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"product": {
"name": "kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"product_id": "kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-427.138.1.el9_4?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "perf-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "perf-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "rtla-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "rtla-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "rv-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "rv-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"product": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"product_id": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool-debuginfo@7.3.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"product": {
"name": "bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"product_id": "bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/bpftool@7.3.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"product": {
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"product_id": "python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-427.138.1.el9_4?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"product": {
"name": "kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"product_id": "kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@5.14.0-427.138.1.el9_4?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"product": {
"name": "kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"product_id": "kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-427.138.1.el9_4?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-427.138.1.el9_4.src",
"product": {
"name": "kernel-0:5.14.0-427.138.1.el9_4.src",
"product_id": "kernel-0:5.14.0-427.138.1.el9_4.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-427.138.1.el9_4?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:5.14.0-427.138.1.el9_4.noarch as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch"
},
"product_reference": "kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "perf-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "perf-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "perf-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "rtla-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "rv-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "rv-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.4)",
"product_id": "AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "rv-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.3.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64"
},
"product_reference": "bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.3.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.3.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x"
},
"product_reference": "bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-0:7.3.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64"
},
"product_reference": "bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-427.138.1.el9_4.src as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src"
},
"product_reference": "kernel-0:5.14.0-427.138.1.el9_4.src",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch"
},
"product_reference": "kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV E4S (v.9.4)",
"product_id": "NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "NFV-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64"
},
"product_reference": "bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.4)",
"product_id": "RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"relates_to_product_reference": "RT-9.4.0.Z.E4S"
}
]
},
"vulnerabilities": [
{
"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": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.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-16T21:59:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:41063"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.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": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: rtmutex: Use waiter::task instead of current in remove_waiter()"
},
{
"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": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.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-16T21:59:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:41063"
},
{
"category": "workaround",
"details": "See the security bulletin for a detailed mitigation procedure.",
"product_ids": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.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": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: futex/requeue: Prevent NULL pointer dereference in remove_waiter() on self-deadlock"
},
{
"cve": "CVE-2026-64600",
"cwe": {
"id": "CWE-362",
"name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)"
},
"discovery_date": "2026-07-10T06:29:23.730000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2498915"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the XFS filesystem. A race condition in the copy-on-write mechanism for reflinked files can cause writes to bypass the copy-on-write process and modify shared data blocks directly. As a result, data intended for a private copy may be written to the original shared location, corrupting the contents of other files that reference those blocks. A local attacker with read access to a file on an XFS filesystem with reflink enabled could exploit this flaw to corrupt files they do not have write access to, allowing content to be added to the target file. If properly exploited this vulnerability may lead to privilege escalations or arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: XFS data corruption using reflink",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw affects XFS filesystems that have the reflink feature enabled (reflink=1), which is the default configuration for XFS filesystems created on Red Hat Enterprise Linux 8 and later. The issue is a race condition where internal file mapping information becomes stale during a lock cycle but is not refreshed before being used to determine whether data blocks are shared between files. Exploitation requires local access and read permission to the target file. Systems using XFS without reflink enabled, or using other filesystems such as ext4, are not affected. Red Hat Enterprise Linux 7 and earlier are not affected, as the reflink feature is not available on those versions.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-64600"
},
{
"category": "external",
"summary": "RHBZ#2498915",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2498915"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-64600",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-64600"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-64600",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-64600"
},
{
"category": "external",
"summary": "https://cdn2.qualys.com/advisory/2026/07/22/RefluXFS.txt",
"url": "https://cdn2.qualys.com/advisory/2026/07/22/RefluXFS.txt"
}
],
"release_date": "2026-07-14T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-16T21:59:56+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:41063"
},
{
"category": "workaround",
"details": "This vulnerability can be mitigated using a SystemTap script. To create and apply the mitigation, follow the steps below:\n\n1. Install and configure SystemTap\n\nInstall the SystemTap package and its dependencies following the instructions at:\nhttps://docs.redhat.com/en/documentation/red_hat_enterprise_linux/10/html/monitoring_and_managing_system_status_and_performance/getting-started-with-systemtap\n\n2. Create the mitigation script\n\nCreate a file named `refluxfs_mitigation.stp` with the following contents:\n\n~~~\nprobe begin {\n printf(\"refluxfs mitigation loaded\\n\")\n}\n\nprobe module(\"xfs\").function(\"xfs_file_remap_range\").call {\n $remap_flags = 0xffff\n}\n\nprobe module(\"xfs\").function(\"xfs_file_remap_range\").return {\n $return = -95\n}\n\nprobe end {\n printf(\"refluxfs mitigation unloaded\\n\")\n}\n~~~\n\n3. Load the mitigation\n\nAs the `root` user, execute SystemTap in guru mode:\n\n~~~\nstap -g refluxfs_mitigation.stp\n~~~\n\nOnce the script is compiled and loaded, the following message will appear:\n\n~~~\nrefluxfs mitigation loaded\n~~~\n\nWith the mitigation active, any application attempting to use reflink to copy files will receive `-EOPNOTSUPP` (`-95`) when calling the `FICLONE` ioctl (or its variants) or the `copy_file_range()` syscall.\n\nImportant considerations:\n\n1. SystemTap scripts are compiled into kernel modules. On systems with Secure Boot enabled, the kernel is in lockdown mode and will only load modules signed with a valid Secure Boot key or a key enrolled in the MOK. SystemTap can sign the generated module at compile time, but the user is responsible for key management. For instructions, refer to the \"Sign a SystemTap module\" section of:\nhttps://www.redhat.com/en/blog/secure-boot-systemtap\n\n2. The SystemTap module is not persistent across reboots. If the machine is restarted or the `stap` process is terminated, the module will be unloaded and the mitigation must be reapplied.\n\n3. Programs that rely on CoW/reflink without a fallback mechanism may fail, as reflink operations will be unavailable on any XFS filesystem while the mitigation is loaded. This includes the `cp` command when run with `--reflink=always`. In that case, use `--reflink=auto` instead, which is the default behavior in Red Hat Enterprise Linux.",
"product_ids": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.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": [
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-64k-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-devel-matched-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-doc-0:5.14.0-427.138.1.el9_4.noarch",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rtla-0:5.14.0-427.138.1.el9_4.x86_64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.aarch64",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.ppc64le",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.s390x",
"AppStream-9.4.0.Z.E4S:rv-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.src",
"BaseOS-9.4.0.Z.E4S:kernel-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-64k-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-427.138.1.el9_4.noarch",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debug-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:kernel-tools-libs-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-uki-virt-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-core-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-0:5.14.0-427.138.1.el9_4.x86_64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.aarch64",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.ppc64le",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.s390x",
"BaseOS-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-kvm-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"NFV-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:bpftool-debuginfo-0:7.3.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-devel-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-core-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:libperf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64",
"RT-9.4.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-427.138.1.el9_4.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: XFS data corruption using reflink"
}
]
}
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.